📜  红宝石 |矩阵虚数()函数

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

红宝石 |矩阵虚数()函数

imaginary()是 Ruby 中的一个内置方法,它返回一个只有虚数部分的矩阵。另一个索引分配为零。

示例 1

#Ruby program for imaginary() method in Matrix
  
#Include matrix
require "matrix"
  
#Initialize a matrix
    mat1
    = Matrix[[ Complex(1, 2), 21 ], [ 31, Complex(9, 12) ]]
  
#prints the imaginary part
      puts mat1.imaginary()

输出

Matrix[[2, 0], [0, 12]]

示例 2

#Ruby program for imaginary() method in Matrix
  
#Include matrix
require "matrix"
  
#Initialize a matrix
    mat1
    = Matrix[[ Complex(19, 3), Complex(12, 3) ], [ Complex(7, 8), Complex(91, 2) ]]
  
#prints the imaginary part
      puts mat1.imaginary()

输出

Matrix[[3, 3], [8, 2]]