| ndim {str2str} | R Documentation |
Number of Object Dimensions
Description
ndim returns the number of dimensions an object has. This is most useful
for arrays, which can have anywhere from 1 to 1000+ dimensions.
Usage
ndim(x)
Arguments
x |
object that has dimensions (e.g., array). |
Details
ndim is a very simple function that is simply length(dim(x)).
Value
integer vector of length 1 specifying the number of dimensions in x.
If x does not have any dimensions, then O is returned.
Examples
ndim(state.region)
ndim(attitude)
ndim(HairEyeColor)
[Package str2str version 1.0.0 Index]