PermutationList[perm] returns a permutation list representation of permutation perm.PermutationList[perm, len] returns a permutation list of length len.
NullSpace[m] gives a list of vectors that forms a basis for the null space of the matrix m.
Play
(Built-in Mathematica Symbol) Play[f, {t, t_min, t_max}] creates an object that plays as a sound whose amplitude is given by f as a function of time t in seconds between t_min and t_max.
Uninstall[link] terminates an external program started by Install, and removes Mathematica definitions set up by it.
We first encountered lists in "Making Lists of Objects" as a way of collecting numbers together. Here, we shall see many different ways to use lists. You will find that lists ...
When you see a two-dimensional expression on the screen, you can edit it much as you would edit text. You can for example place your cursor somewhere and start typing. Or you ...
MathLink allows you to call an external program from within Mathematica even when that program is running on a remote computer. Typically, you need to start the program ...
FactorInteger[n] gives a list of the prime factors of the integer n, together with their exponents. FactorInteger[n, k] does partial factorization, pulling out at most k ...
Join
(Built-in Mathematica Symbol) Join[list_1, list_2, ...] concatenates lists or other expressions that share the same head.Join[list_1, list_2, ..., n] joins the objects at level n in each of the list_i.
PseudoInverse[m] finds the pseudoinverse of a rectangular matrix.