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