Ruby 矩阵 hermitian?() 函数
hermitian?() 是Ruby中一个内置的方法,它返回一个布尔值。如果矩阵是隐式的,它返回真,否则返回假。如果检查的不是正方形矩阵,它将抛出一个错误。
语法 :mat1.hermitian?()
参数 :该函数需要一个要检查其隐式的矩阵。
返回值 :如果该矩阵是隐式的,则返回 true,否则返回 false。
例子 1 :
# Ruby program for hermitian?() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 21], [31, 18]]
# Prints the value of mat1.hermitian?()
puts mat1.hermitian?()
输出:
false
例2 :
# Ruby program for hermitian?() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[2, Complex(2, 1), 4], [Complex(2, -1),
3, Complex(0,1)], [4, Complex(0,-1), 1]]
# Prints the value of mat1.hermitian?()
puts mat1.hermitian?()
输出:
true