Class: Malge::Matrix

Inherits:
Matrix
  • Object
show all
Defined in:
lib/malge/matrix.rb

Overview

require “malge.rb”

Instance Method Summary collapse

Instance Method Details

#[]=(i, j, x) ⇒ Object



5
6
7
# File 'lib/malge/matrix.rb', line 5

def []=(i,j,x)
  @rows[i][j]=x
end