Row () es un método incorporado en Ruby que devuelve un vector que contiene todos los elementos en el número de fila dado.
Sintaxis : mat1.row(num)
Parámetros : la función toma una fila de parámetros obligatoria, cuyos elementos se devolverán en un vector.
Valor devuelto : Devuelve un vector que contiene todos los elementos en la fila de números.
Ejemplo 1 :
# Ruby program for row() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[6, 432], [54, 323]] # Prints the 0th row puts mat1.row(0)
Salida :
Vector[6, 432]
Ejemplo 2 :
# Ruby program for row() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, 1, 1],[2, 2, 2],[3, 5, 6]] # Prints the 1sr row puts mat1.row(1)
Salida :
Vector[2, 2, 2]