eigensystem()是Ruby返回矩阵特征系统的一种内置方法。
用法: mat1.eigensystem()
参数:该函数不接受任何参数。
返回值:返回矩阵的本征系统。
例子1:
# Ruby program for eigensystem() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 0], [0, 2]]
# prints the eigensystem
puts mat1.eigensystem()
输出:
Matrix[[1.0, 0.0], [0.0, 1.0]] Matrix[[1.0, 0], [0, 2.0]] Matrix[[1.0, 0.0], [0.0, 1.0]]
例子2:
# Ruby program for eigensystem() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 1, 5], [4, 1, 5], [11, 2, 12]]
# prints the eigensystem
puts mat1.eigensystem()
输出:
Matrix[[0.3051508362231803, 0.8432205915902499, -0.04211389264475984], [0.36021591185448126, -0.07469426749056905, -1.0068644256268935], [0.881548333331269, -0.6184679554209885, 0.20869263449203795]] Matrix[[16.624920572145022, 0, 0], [0, -2.7558784453101666, 0], [0, 0, 0.13095787316514576]] Matrix[[0.6383015261676529, 0.14992783363808046, 0.8521544829905635], [0.9627740639327973, -0.10080816379994396, -0.2920754272026449], [0.15693539149903699, -0.9320657209209471, 0.3265344924799822]]
相关用法
- Ruby Matrix inv()用法及代码示例
- Ruby Matrix eql?用法及代码示例
- Ruby Matrix det()用法及代码示例
- Ruby Matrix lup()用法及代码示例
- Ruby Matrix tr()用法及代码示例
- Ruby Matrix t()用法及代码示例
- Ruby Matrix row()用法及代码示例
- Ruby Matrix I()用法及代码示例
- Ruby Matrix zero?()用法及代码示例
- Ruby Matrix zero()用法及代码示例
- Ruby Matrix regular?()用法及代码示例
- Ruby Matrix to_matrix()用法及代码示例
- Ruby Matrix to_a()用法及代码示例
- Ruby Matrix round()用法及代码示例
- Ruby Matrix to_s()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Matrix eigensystem() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。