tensorA (version 0.36.2.1)

level.tensor: The level (number of indices) of a tensor

Description

The level of a tensor is the number of dimensions or subscripts used.

Usage

level.tensor(X,...)

Value

the number of levels

Arguments

X

the tensor to be used

...

not used

Author

K. Gerald van den Boogaart

Details

The level of the tensor is the length of its dim attribute. Objects without a dim attribute get level 1 if they are of length > 1 and are marked as scalars by 0 level otherwise.

See Also

to.tensor

Examples

Run this code
A <- to.tensor(1:24,c(a=1,b=2,c=3,d=4))
level.tensor(A)
level.tensor(matrix(1))
level.tensor(1:10)
level.tensor(1)

Run the code above in your browser using DataLab