TITLE(array @@ Multi-way Arrays)
USAGE(
array(x, dim=length(x), dimnames=NULL)
BLANK
as.array(x)
is.array(x)
)
ALIAS(array)
ALIAS(as.array)
ALIAS(is.array)
VALUE(
An array with the extents specified in LANG(dim)
and naming information in LANG(dimnames).
The values in LANG(x) are taken to be those in the array with the
leftmost subscript moving fastest.  If there are too few elements
in LANG(x) to fill the array, then the elements in LANG(x) are
recycled.
PARA
LANG(as.array) coerces its argument to be an array by attaching a
LANG(dim) attribute to it.  The sole purpose of this is to make it
possible to access the LANG(dim) attribute at a later time.
PARA
LANG(is.array) returns LANG(TRUE) or LANG(FALSE) depending on
whether its argument is an array (i.e. has a LANG(dim) attribute)
or not.
)
SEEALSO(
LANG(LINK(aperm)), LANG(LINK(matrix)).
)
EXAMPLES(
dim(as.array(letters))
)
