Method: Matrix#regular?

Defined in:
lib/matrix.rb

#regular?Boolean

Returns true if this is a regular (i.e. non-singular) matrix.

Returns:

  • (Boolean)


926
927
928
# File 'lib/matrix.rb', line 926

def regular?
  not singular?
end