type/equationlist
check for a list of equations
type/equationset
check for a set of equations
Calling Sequence
Parameters
Description
Supertypes
Examples
Compatibility
type(e, 'equationlist')
e
-
any expression
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).
type/list is supertype of equationlist
type/set is supertype of equationset
T≔table⁡color=red,surfacearea=4⁢π⁢r2,volume=4⁢π⁢r33
T≔table⁡volume=4⁢π⁢r33,color=red,surfacearea=4⁢π⁢r2
L≔convert⁡T,equationlist
L≔color=red,volume=4⁢π⁢r33,surfacearea=4⁢π⁢r2
type⁡L,equationlist
true
S≔convert⁡T,equationset
S≔color=red,volume=4⁢π⁢r33,surfacearea=4⁢π⁢r2
type⁡S,equationset
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
Download Help Document