Ruby 矩阵to_s()函数
to_s() 是Ruby中一个内置的方法,它返回一个包含矩阵的字符串作为对象。
语法 :mat1.to_s()
参数 : 该函数需要返回字符串对象的矩阵。
返回值 : 它返回一个字符串或自我。
例子 1 :
# Ruby program for to_s() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[3, 12], [2, 8]]
# Prints the to_s matrix
puts mat1.to_s()
输出:
Matrix[[3, 12], [2, 8]]
例2 :
# Ruby program for to_s() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 0], [6, 1], [1, 2]]
# Prints the to_s matrix
puts mat1.to_s()
输出:
Matrix[[1, 0], [6, 1], [1, 2]]