El to_a() es un método incorporado en Ruby devuelve la array con elementos de vector
Sintaxis : vec1.to_a()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve la array con elementos de vector
Ejemplo 1 :
# Ruby program for to_a() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 2, 3] # Prints the array puts vec1.to_a()
Salida :
1 2 3
Ejemplo 2 :
# Ruby program for to_a() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 2, 3, 4, 5] # Prints the array puts vec1.to_a()
Salida :
1 2 3 4 5