作者:顽童0006_648 | 来源:互联网 | 2023-10-10 08:43
本文整理了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) {