= private = protected
to_a()
Returns an array of arrays that describe the rows of the matrix.
# File lib/matrix.rb, line 843 def to_a @rows.collect{|row| row.collect{|e| e}} end