Wiki

Clone wiki

symja_android_library / Symbols / List

List - { } operator

{ elem1, elem2, ... }
a { elem1, elem2, ... } represents a comma separated list of elements. Lists are used to create vectors and matrices.

See:

Examples

>>> List(1,2,3,x,y,z)
{1,2,3,x,y,z}

>>> Sin({1,2,3,x,y,z})
{Sin(1),Sin(2),Sin(3),Sin(x),Sin(y),Sin(z)}

Related terms

Append, First, Listable, MatrixQ, Prepend, Rest, VectorQ

Updated