matrix matrix # File: matrix-11.rb#require 'matrix'matrix = Matrix[[1, 2], [3, 4], [5, 6]]puts matrixmatrix[0, 1] = 5