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