= private = protected
==(other)
Returns true if and only if the two matrices contain equal elements.
# File lib/matrix.rb, line 400 def ==(other) return false unless Matrix === other other.compare_by_row_vectors(@rows) end