📜  红宝石 |矩阵共轭()函数

📅  最后修改于: 2022-05-13 01:54:41.485000             🧑  作者: Mango

红宝石 |矩阵共轭()函数

conjugate()是 Ruby 中的一个内置方法,它返回共轭矩阵。

示例 1

# Ruby program for conjugate() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 =  mat1 =  Matrix[[1, Complex(2, 1)], 
[Complex(8, -9), 18]]       
   
# prints the conjugate matrix
puts  mat1.conjugate()

输出

Matrix[[1, 2-1i], [8+9i, 18]]

示例 2

# Ruby program for conjugate() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[Complex(2, 5), 1, 5],
 [Complex(12, 1), 1, 5], [11, 2, Complex(6, -1)]]    
  
# prints the conjugate matrix
puts  mat1.conjugate()

输出

Matrix[[2-5i, 1, 5], [12-1i, 1, 5], [11, 2, 6+1i]]