commands → matrix

matrix(M,N)

The matrix command constructs the M x N zero matrix.

Examples

matrix(2,3);
	[[0, 0, 0], [0, 0, 0]]