Ruby 矩阵 laplace_expansion()函数

Ruby 矩阵 laplace_expansion()函数

laplace_expansion() 是Ruby中的一个内置方法,用于返回给定矩阵的沿给定行或列的拉普拉斯扩展。换句话说,它返回 Laplace扩展。

语法 :mat1.laplace_expansion(row: num or col:num)

参数 :该函数接受一个强制性的参数row或column,其laplace_expansion被返回。

返回值 :它返回给定矩阵沿给定行或列的laplace-expansion。

例子 1 :

#Ruby program for laplace_expansion() method in Matrix
 
#Include matrix
require "matrix"
 
#Initialize a matrix
    mat1
    = Matrix[[ 1, 21 ], [ 31, 18 ]]
 
#Prints the value of mat1.laplace_expansion
#first row
      puts mat1.laplace_expansion(row : 1)

输出:

-633

例2 :

#Ruby program for laplace_expansion() method in Matrix
 
#Include matrix
require "matrix"
 
#Initialize a matrix
    mat1
    = Matrix[[ 13, 1, 5 ], [ 12, 1, 5 ], [ 11, 2, 5 ]]
 
#Prints the value of mat1.laplace_expansion
#first row
      puts mat1.laplace_expansion(column : 0)

输出:

-5

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程