Row_vectors () es un método incorporado en Ruby que devuelve vectores que representan cada fila en la array.
Sintaxis : mat1.row_vectors()
Parámetros : La función no toma ningún parámetro obligatorio.
Valor devuelto : Devuelve vectores que representan las filas.
Ejemplo 1 :
# Ruby program for row_vectors() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[6, 432], [54, 323]] # Prints the rows in vectors puts mat1.row_vectors()
Salida :
Vector[6, 432] Vector[54, 323]
Ejemplo 2 :
# Ruby program for row_vectors() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, 1, 1],[2, 2, 2],[3, 5, 6]] # Prints the rows in vectors puts mat1.row_vectors()
Salida :
Vector[1, 1, 1] Vector[2, 2, 2] Vector[3, 5, 6]