Ruby 矩阵 to_a()函数
to_a() 是Ruby中的一个内置方法,它返回一个数组,该数组拥有矩阵的所有元素,按行排列。
语法 :mat1.to_a()
参数 :该函数需要将矩阵转换为数组。
返回值 : 它返回一个数组。
例子 1 :
# Ruby program for to_a() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[3, 12], [2, 8]]
# Prints the to_a matrix
puts mat1.to_a()
输出:
3
12
2
8
例2 :
# Ruby program for to_a() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 0], [6, 1], [1, 2]]
# converted to array
arr = mat1.to_a()
# Prints the array
puts arr
输出:
1
0
6
1
1
2