commands → append

append(A,B)

The append command inserts adds rows from B the bottom of a matrix A. The number of columns in A and B must be the same.

Examples

append([[1,2],[3,4]],[5,6]);
	[[1, 2], [3, 4], [5, 6]]