https://github.com/cran/RandomFields
Raw File
Tip revision: fab3d29ef16569604858ee648b9e1f6f7d4a7c96 authored by Martin Schlather on 21 September 2014, 00:00:00 UTC
version 3.0.42
Tip revision: fab3d29
Print.Rd
\name{Print}
\alias{Print}
\title{Nice print function returning also the names automatically}
\description{
  prints variable names and the values
}
\usage{
Print(..., digits = 6, empty.lines = 2)
}
\arguments{
  \item{...}{any object that can be \command{print}-ed}
  \item{digits}{see \code{\link{print}}}
  \item{empty.lines}{number of leading empty lines}
}
\value{
  prints the names and the values; for vectors \command{cat}
  is used and for lists \command{str}
} 
\author{Martin Schlather, \email{schlather@math.uni-mannheim.de}
  \url{http://ms.math.uni-mannheim.de/de/publications/software}}

\keyword{print}

\examples{
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
##                   RFoptions(seed=NA) to make them all random again
  a <- 4
  b <- list(c=5, g=7)
  m <- matrix(1:4, nc=2)
  Print(a, b, m)
\dontshow{FinalizeExample()}
}
back to top