class Matrix

Public Instance Methods

[]=(i, j, x) click to toggle source

Set the cell value i,j to x, where i=row, and j=column. @param i [Integer] Row @param j [Integer] Column @param x [Object] New cell value

# File lib/oxcelix.rb, line 31
def []=(i, j, x)
  @rows[i][j]=x
end