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/core_ext/ext.rb, line 14 def []=(i, j, x) @rows[i][j]=x end