1\name{paste.vec}
2\alias{paste.vec}
3\title{Utility for 'Showing' S vectors}
4\description{
5  A simple utility for displaying simple S vectors;
6  can be used as debugging utility.
7}
8\usage{
9paste.vec(name, digits = options()$digits)
10}
11\arguments{
12  \item{name}{string with an variable name which must exist in the
13    current environment (\R session).}
14  \item{digits}{how many decimal digits to be used; passed to
15    \code{\link{format}}.}
16}
17\value{
18  a string of the form "NAME =  x1 x2 ..."
19}
20\author{Martin Maechler, about 1992.}
21\examples{
22 x <- 1:4
23 paste.vec(x)   ##->  "x = 1 2 3 4"
24}
25\keyword{utilities}
26