Ruby 矩阵 clone()函数
clone() 是Ruby中的一个内置方法,它返回给定矩阵的一个克隆,使其内容不被相同的对象所引用。
语法 :mat1.clone()
参数 :该函数需要一个要返回其克隆的矩阵。
返回值 :它返回克隆矩阵。
例子 1 :
# Ruby program for clone() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 21], [31, 18]]
# Prints the value of mat1.clone()
puts mat1.clone()
输出:
Matrix[[1, 21], [31, 18]]
例2 :
# Ruby program for clone() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 1, 5], [1, 1, 5], [1, 2, 5]]
# Prints the value of mat1.clone()
puts mat1.clone()
输出:
Matrix[[1, 1, 5], [1, 1, 5], [1, 2, 5]]