Ruby 矩阵 除法/方法
在Ruby中,” / “是一个内置的方法,用于返回两个矩阵mat1和mat2相除的矩阵。这里,除法是指与逆数相乘。
语法 :mat1 / mat2
参数 :该函数需要两个矩阵mat1和mat2被除。
返回值 :它返回除法后的结果矩阵。
例子 1 :
# Ruby program for / method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 2, 6], [3, 4, 8], [12, 1, 3]]
mat2 = Matrix[[1, 2, 6], [3, 4, 8], [12, 1, 3]]
# Prints the value of mat1/mat2
puts mat1 / mat2
输出:
Matrix[[1/1, 0/1, 0/1], [0/1, 1/1, 0/1], [0/1, 0/1, 1/1]]
例2 :
# Ruby program for / method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 21], [31, 18]]
mat2 = Matrix[[1, 16], [31, 28]]
# Prints the value of mat1/mat2
puts mat1 / mat2
输出:
Matrix[[623/468, -5/468], [-155/234, 239/234]]