class Matrix::LUPDecomposition

def singular? ()

def singular? ()
  @col_size.times do |j|
    if (@lu[j][j] == 0)
      return true
    end
  end
  false
end