Ruby 矩阵 lower_triangular? 函数
lower_triangular?() 是Ruby中一个内置的方法,它返回一个布尔值。如果它是一个下三角矩阵,则返回真,否则返回假。
语法 :mat1.lower_triangular?()
参数 :该函数需要检查矩阵的下三角。
返回值 :如果是下三角矩阵,则返回 true,否则返回 false。
例子 1 :
#Ruby program for lower_triangular ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 21 ], [ 31, 18 ]]
#Prints if lower_triangular or not
puts mat1.lower_triangular
? ()
输出:
false
例2 :
#Ruby program for lower_triangular ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 0, 0 ], [ 2, 3, 0 ], [ 31, 18, 19 ]]
#Prints if lower_triangular or not
puts mat1.lower_triangular
? ()
输出:
true