热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.apache.commons.math3.linear.EigenDecomposition.getD()方法的使用及代码示例

本文整理了Java中org.apache.commons.math3.linear.EigenDecomposition.getD()方法的一些代码示例,展示了

本文整理了Java中org.apache.commons.math3.linear.EigenDecomposition.getD()方法的一些代码示例,展示了EigenDecomposition.getD()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。EigenDecomposition.getD()方法的具体详情如下:
包路径:org.apache.commons.math3.linear.EigenDecomposition
类名称:EigenDecomposition
方法名:getD

EigenDecomposition.getD介绍

[英]Gets the block diagonal matrix D of the decomposition. D is a block diagonal matrix. Real eigenvalues are on the diagonal while complex values are on 2x2 blocks { {real +imaginary}, {-imaginary, real} }.
[中]获取分解的块对角矩阵D。D是块对角矩阵。实特征值在对角线上,而复值在2x2块{{Real+virtual},{virtual,Real}上。

代码示例

代码示例来源:origin: org.apache.commons/commons-math3

D = eig.getD();
diagD = diag(D);
if (min(diagD) <= 0) {

代码示例来源:origin: org.apache.commons/commons-math3

D = eig.getD();
diagD = diag(D);
if (min(diagD) <= 0) {

代码示例来源:origin: ujmp/universal-java-matrix-package

public Matrix[] eig() {
EigenDecomposition evd = new EigenDecomposition(matrix);
Matrix v = CommonsMathDenseDoubleMatrix2DFactory.INSTANCE.dense(evd.getV());
Matrix d = CommonsMathDenseDoubleMatrix2DFactory.INSTANCE.dense(evd.getD());
return new Matrix[] { v, d };
}

代码示例来源:origin: org.ujmp/ujmp-commonsmath

public Matrix[] eig() {
EigenDecomposition evd = new EigenDecomposition(matrix);
Matrix v = CommonsMathDenseDoubleMatrix2DFactory.INSTANCE.dense(evd.getV());
Matrix d = CommonsMathDenseDoubleMatrix2DFactory.INSTANCE.dense(evd.getD());
return new Matrix[] { v, d };
}

代码示例来源:origin: lessthanoptimal/Java-Matrix-Benchmark

@Override
public long process(BenchmarkMatrix[] inputs, BenchmarkMatrix[] outputs, long numTrials) {
RealMatrix matA = inputs[0].getOriginal();
RealMatrix V = null;
RealMatrix D = null;
long prev = System.nanoTime();
for( long i = 0; i try {
EigenDecomposition eig = new EigenDecomposition(matA);
// need to do this so that it computes the complete eigen vector
V = eig.getV();
D = eig.getD();
} catch( MaxCountExceededException e ) {
throw new DetectedException(e);
} catch( MathArithmeticException e ) {
throw new DetectedException(e);
}
}
long elapsedTime = System.nanoTime()-prev;
if( outputs != null ) {
outputs[0] = new CommonsMathBenchmarkMatrix(D);
outputs[1] = new CommonsMathBenchmarkMatrix(V);
}
return elapsedTime;
}
}

代码示例来源:origin: geogebra/geogebra

D = eig.getD();
diagD = diag(D);
if (min(diagD) <= 0) {

代码示例来源:origin: io.virtdata/virtdata-lib-realer

D = eig.getD();
diagD = diag(D);
if (min(diagD) <= 0) {

代码示例来源:origin: io.virtdata/virtdata-lib-realer

D = eig.getD();
diagD = diag(D);
if (min(diagD) <= 0) {

推荐阅读
author-avatar
顽童0006_648
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有