Print {RandomFields} | R Documentation |
prints variable names and the values
Print(...)
... |
any object that can be |
prints the names and the values; for vectors cat
is used and for lists str
Martin Schlather, martin.schlather@math.uni-goettingen.de http://www.stochastik.math.uni-goettingen.de/~schlather
a <- 4 b <- list(c=5, g=7) m <- matrix(1:4, nc=2) Print(a, b, m)