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

Online Help

All Products    Maple    MapleSim


MTM

  

findsym

  

find symbols

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

findsym(M)

findsym(M,n)

Parameters

M

-

array or expression

n

-

integer

Description

• 

The findsym(M) function finds symbolic variables in M. The sequence of symbols are returned in alphabetical order.

• 

The findsym(M,n) function finds the n symbolic variables in an expression nearest in alphabetical order to the letter x.

• 

Symbolic constants like the imaginary unit and Pi are not considered variables, so they will not be returned from a call to findsym even when present in the given expression.

Examples

withMTM:

MMatrix2,3,fill=ax+y:

findsymM

axy

(1)

findsymα+a+b

aαb

(2)

findsymcosαbx1+14y,2

x1y

(3)

findsymy4+3I+6

y

(4)

See Also

indets

MTM