Ruby 矩阵 real?()函数
real?() 是Ruby中一个内置的方法,它返回一个布尔值。如果矩阵中的所有值都是实数,它将返回真,否则将返回假。
语法 :mat1.real?()
参数 :该函数需要检查矩阵中的实值。
返回值 :如果所有数值都是真实的,则返回真,否则返回假。
例子 1 :
#Ruby program for real ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 21 ], [ 31, 18 ]]
#Prints if all values are real or not
puts mat1.real
? ()
输出:
true
例2 :
#Ruby program for real ? () method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 21 ], [ 31, 18 ], [ Complex(1, 9), 1 ]]
#Prints if real ? or not
puts mat1.real
? ()
输出:
false