listdummyvars SciMax Toolbox listoftens

SciMax Toolbox >> listify

listify

Maxima Function

Calling Sequence

listify (a)

Description

Returns a list containing the members of a when a is a set. Otherwise, listify returns a.

full_listify replaces all set operators in a by list operators.

Examples:

(%i1) listify ({a, b, c, d});
(%o1)                     [a, b, c, d]
(%i2) listify (F ({a, b, c, d}));
(%o2)                    F({a, b, c, d})
listdummyvars SciMax Toolbox listoftens