Ruby 矩阵 real()函数
real() 是Ruby中一个内置的方法,它返回一个只有实数部分的矩阵。其他索引被分配为零。
语法 :mat1.real()
参数 :该函数不需要任何参数。
返回值 : 它返回一个只有实数部分的矩阵。
例子 1 :
#Ruby program for real() method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ Complex(1, 2), 21 ], [ 31, Complex(9, 12) ]]
#prints the real part
puts mat1.real()
输出:
Matrix[[1, 21], [31, 9]]
例2 :
#Ruby program for real() 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 real part
puts mat1.real()
输出:
Matrix[[19, 12], [7, 91]]