当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Matrix laplace_expansion()用法及代码示例


laplace_expansion()是Ruby中的内置方法,它沿着给定的行或列返回给定矩阵的laplace_expansion。换句话说,它返回Laplace展开。

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

参数:该函数接受一个必填参数行或列,其返回的是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


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Matrix laplace_expansion() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。