Method: Matrix#square?

Defined in:
lib/matrix.rb

#square?Boolean

Returns true if this is a square matrix.



859
860
861
# File 'lib/matrix.rb', line 859

def square?
  column_count == row_count
end