zeros(n)

The zeros(n) function returns an n x n matrix of all zeros.

Examples

OML

>> zeros(6)

0 0 0 0 0 0

0 0 0 0 0 0

0 0 0 0 0 0

0 0 0 0 0 0

0 0 0 0 0 0

0 0 0 0 0 0

Block