rtable_indfns
return the indexing functions of an rtable
Calling Sequence
Parameters
Description
Thread Safety
Examples
rtable_indfns(A)
A
-
rtable
The rtable_indfns(A) function, where A is an Array, Matrix, or Vector, returns a sequence of indexing functions for rtable A.
In the case that A is an Array, this is equivalent to op(1, A).
You can also use MatrixOptions or VectorOptions with the shape parameter to obtain the indexing functions (shape) for Matrices and Vectors, respectively.
The rtable_indfns command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
A≔Array⁡triangularupper,1..3,1..4
A≔000000000000
rtable_indfns⁡A
triangularupper
op⁡1,A
M≔Matrix⁡3,3,shape=symmetric
M≔000000000
M1,2≔4
M
040400000
rtable_indfns⁡M
symmetric
See Also
Array
IsMatrixShape
IsVectorShape
Matrix
MatrixOptions
op
Vector
VectorOptions
Download Help Document