红宝石 |矩阵正常?函数
normal?()是 Ruby 中的一个内置方法,返回一个布尔值。如果它是正常矩阵,则返回 true,否则返回 false。如果使用方阵以外的任何东西,它会返回错误。
Syntax: mat1.normal?()
Parameters: The function needs the matrix to be checked for square or not.
Return Value: It returns true if it is a square matrix, else it returns false.
示例 1 :
#Ruby program for normal ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 21 ], [ 31, 18 ]]
#Prints if normal ? or not
puts mat1.normal
? ()
输出:
false
示例 2 :
#Ruby program for normal ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 2, 1, 1 ], [ 1, 2, 1 ], [ 1, 1, 2 ]]
#Prints if normal ? or not
puts mat1.normal
? ()
输出:
true