The to_a() is an inbuilt method in Ruby returns the array with elements of vector
Syntax: vec1.to_a()
Parameters: The function accepts no parameter
Return Value: It returns the array with elements of vector
Example 1:
require "matrix"
vec1 = Vector[ 1 , 2 , 3 ]
puts vec1.to_a()
|
Output:
1
2
3
Example 2:
require "matrix"
vec1 = Vector[ 1 , 2 , 3 , 4 , 5 ]
puts vec1.to_a()
|
Output:
1
2
3
4
5