In Files

  • matrix.rb

Parent

Methods

ExceptionForMatrix::ErrNotRegular

Public Class Methods

new(val = nil) click to toggle source
 
               # File matrix.rb, line 29
def initialize(val = nil)
  if val
    super(val)
  else
    super("Not Regular Matrix")
  end
end