equationlist - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


type/equationlist

check for a list of equations

type/equationset

check for a set of equations

 

Calling Sequence

Parameters

Description

Supertypes

Examples

Compatibility

Calling Sequence

type(e, 'equationlist')

Parameters

e

-

any expression

Description

• 

The expression type(e, 'equationlist') returns the value true if the expression e is a list of equations, and returns the value false otherwise. It is a synonym for list(equation).

• 

The expression type(e, 'equationset') returns the value true if the expression e is a set of equations, and returns the value false otherwise. It is a synonym for set(equation).

Supertypes

• 

type/list is supertype of equationlist

• 

type/set is supertype of equationset

Examples

Ttablecolor=red,surfacearea=4πr2,volume=4πr33

Ttablevolume=4πr33,color=red,surfacearea=4πr2

(1)

LconvertT,equationlist

Lcolor=red,volume=4πr33,surfacearea=4πr2

(2)

typeL,equationlist

true

(3)

SconvertT,equationset

Scolor=red,volume=4πr33,surfacearea=4πr2

(4)

typeS,equationset

true

(5)

Compatibility

• 

The type/equationlist and type/equationset commands were introduced in Maple 2022.

• 

For more information on Maple 2022 changes, see Updates in Maple 2022.

See Also

convert/equationlist

type

type/list

type/set