rtable_indfns - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


rtable_indfns

return the indexing functions of an rtable

 

Calling Sequence

Parameters

Description

Thread Safety

Examples

Calling Sequence

rtable_indfns(A)

Parameters

A

-

rtable

Description

• 

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.

Thread Safety

• 

The rtable_indfns command is thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

Examples

AArraytriangularupper,1..3,1..4

A000000000000

(1)

rtable_indfnsA

triangularupper

(2)

op1,A

triangularupper

(3)

MMatrix3,3,shape=symmetric

M000000000

(4)

M1,24

M1,24

(5)

M

040400000

(6)

rtable_indfnsM

symmetric

(7)

See Also

Array

IsMatrixShape

IsVectorShape

Matrix

MatrixOptions

op

rtable

Vector

VectorOptions