El []() es un método incorporado en Ruby devuelve el elemento en la i-ésima fila y la j-ésima columna.
Sintaxis : mat1[i, j]
Parámetros : la función necesita el número de fila i y el número de columna j cuyo elemento de posición se devolverá.
Valor devuelto : Devuelve el elemento en la posición mat[i][j].
Ejemplo 1 :
# Ruby program for [] method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, 21], [31, 18]] # Print the element at 1,1 puts mat1[1, 1]
Salida :
18
Ejemplo 2 :
# Ruby program for [] method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[89 , 12, 12], [8, 5, 23], [1, 2, 9]] # Print the element at 2,3 puts mat1[2, 2]
Salida :
9