Ruby 矩阵 lup()函数
lup() 是Ruby中的一个内置方法,用于返回给定矩阵的LUP分解结果。
语法 :mat1.lup()
参数 :该函数需要返回其LUP分解的矩阵。
返回值 :它返回矩阵的 LUP 分解。
例子 1 :
#Ruby program for lup() method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 21 ], [ 31, 18 ]]
#Prints the decomposition
puts mat1.lup()
输出:
Matrix[[1, 0], [1/31, 1]]
Matrix[[31, 18], [0, 633/31]]
Matrix[[0, 1], [1, 0]]
例2 :
#Ruby program for lup() method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 0, 0 ], [ 2, 3, 0 ], [ 31, 18, 19 ]]
#Prints the decomposition
puts mat1.lup()
输出:
Matrix[[1, 0, 0], [2/31, 1, 0], [1/31, -6/19, 1]]
Matrix[[31, 18, 19], [0, 57/31, -38/31], [0, 0, -1/1]]
Matrix[[0, 0, 1], [0, 1, 0], [1, 0, 0]]