= private = protected
zero(n)
Creates an n by n zero matrix.
Matrix.zero(2) => 0 0 0 0
# File lib/matrix.rb, line 204 def Matrix.zero(n) Matrix.scalar(n, 0) end