Ruby 矩阵 upper_triangular?() 函数

Ruby 矩阵 upper_triangular?() 函数

upper_triangular?() 是Ruby中一个内置的方法,它返回一个布尔值。如果它是一个下三角矩阵,则返回真,否则返回假。

语法 :mat1.upper_triangular?()

参数 :该函数需要检查矩阵的下三角。

返回值 :如果它是一个下三角矩阵,则返回真,否则返回假。

例子 1 :

# Ruby program for upper_triangular?() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 = Matrix[[1, 21], [31, 18]]  
   
# Prints if upper_triangular or not 
puts  mat1.upper_triangular?()

输出:

false

例2 :

# Ruby program for upper_triangular?() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 = Matrix[[31, 18, 19], [0, 3, 2],  [0, 0, 1]]
   
# Prints if upper_triangular or not 
puts  mat1.upper_triangular?()

输出:

true

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程