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