• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java MatrixStore类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.ojalgo.matrix.store.MatrixStore的典型用法代码示例。如果您正苦于以下问题:Java MatrixStore类的具体用法?Java MatrixStore怎么用?Java MatrixStore使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



MatrixStore类属于org.ojalgo.matrix.store包,在下文中一共展示了MatrixStore类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: assertEquals

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public static <N extends Number> void assertEquals(final MatrixStore<N> expected, final Eigenvalue<N> actual, final NumberContext context) {
    if (!Eigenvalue.equals(expected, actual, context)) {
        Assert.failNotEquals("Eigenvalue<N>", expected, actual);
    }
    if (actual.isOrdered()) {
        final MatrixStore<N> mtrxD = actual.getD();
        double bigger = Double.MAX_VALUE;
        final Array1D<ComplexNumber> tmpEigenvalues = actual.getEigenvalues();
        for (int i = 0; i < tmpEigenvalues.length; i++) {
            final ComplexNumber value = tmpEigenvalues.get(i);
            Assert.assertTrue(bigger >= value.getModulus());
            Assert.assertEquals(value.doubleValue(), mtrxD.doubleValue(i, i), context.epsilon());
            bigger = value.getModulus();
        }
    }
}
 
开发者ID:optimatika,项目名称:ojAlgo-finance,代码行数:17,代码来源:TestUtils.java


示例2: testCaseData

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public void testCaseData() {

        final MatrixStore<Double> tmpExpected = myBE;

        MatrixStore<Double> tmpActual = myAE.multiply(myXE);
        Access2D.equals(tmpExpected, tmpActual, myEvaluationContext);

        tmpActual = myAE.multiply(myXI);
        TestUtils.assertEquals(tmpExpected, tmpActual, myEvaluationContext);

        if ((myAI != null) && (myBI != null)) {

            final PhysicalStore<Double> tmpSlack = myBI.copy();
            tmpSlack.modifyMatching(PrimitiveFunction.SUBTRACT, myAI.multiply(myXI));

            for (int i = 0; i < tmpSlack.countRows(); i++) {
                TestUtils.assertTrue(tmpSlack.doubleValue(i, 0) > -myEvaluationContext.epsilon());
            }
        }
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:21,代码来源:GenericQPSolverTest.java


示例3: resetActivator

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
void resetActivator() {

        myActivator.excludeAll();

        final int numbEqus = this.countEqualityConstraints();
        final int numbVars = this.countVariables();

        if (this.hasInequalityConstraints()) {
            final MatrixStore<Double> slack = this.getSlackI();
            final int[] excl = this.getExcluded();

            for (int i = 0; i < excl.length; i++) {
                if (options.feasibility.isZero(slack.doubleValue(excl[i])) && (!options.solution.isZero(this.getSolutionL().doubleValue(numbEqus + excl[i])))) {
                    this.include(excl[i]);
                }
            }
        }

        while (((numbEqus + this.countIncluded()) >= numbVars) && (this.countIncluded() > 0)) {
            this.shrink();
        }

        if (this.isDebug() && ((numbEqus + this.countIncluded()) > numbVars)) {
            this.log("Redundant contraints!");
        }
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:27,代码来源:ActiveSetSolver.java


示例4: getRank

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public int getRank() {

        int retVal = 0;

        final MatrixStore<Double> tmpR = this.getR();
        final int tmpMinDim = (int) Math.min(tmpR.countRows(), tmpR.countColumns());

        final AggregatorFunction<Double> tmpLargest = PrimitiveAggregator.LARGEST.get();
        tmpR.visitDiagonal(0L, 0L, tmpLargest);
        final double tmpLargestValue = tmpLargest.doubleValue();

        for (int ij = 0; ij < tmpMinDim; ij++) {
            if (!tmpR.isSmall(ij, ij, tmpLargestValue)) {
                retVal++;
            }
        }

        return retVal;
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:20,代码来源:RawQR.java


示例5: doTest

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
private void doTest(final MatrixDecomposition.Solver<Double> decomposition, final MatrixStore<Double> body, final MatrixStore<Double> rhs,
        final MatrixStore<Double> solution, final NumberContext accuracy) {

    decomposition.decompose(body);

    TestUtils.assertEquals(solution, decomposition.getSolution(rhs), accuracy);

    final MatrixStore<Double> tmpI = body.physical().makeEye(body.countRows(), body.countColumns());

    final MatrixStore<Double> tmpExpectedInverse = decomposition.getSolution(tmpI);
    decomposition.reset();
    decomposition.decompose(body);
    TestUtils.assertEquals(tmpExpectedInverse, decomposition.getInverse(), accuracy);

    TestUtils.assertEquals(tmpI, tmpExpectedInverse.multiply(body), accuracy);
    TestUtils.assertEquals(tmpI, body.multiply(tmpExpectedInverse), accuracy);
}
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:18,代码来源:TestSolveAndInvert.java


示例6: getR

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
/**
 * Return the upper triangular factor
 *
 * @return R
 */
public MatrixStore<Double> getR() {

    final int tmpColDim = this.getColDim();

    final double[][] tmpData = this.getRawInPlaceData();

    final RawStore retVal = new RawStore(tmpColDim, tmpColDim);
    final double[][] retData = retVal.data;

    double[] tmpRow;
    for (int i = 0; i < tmpColDim; i++) {
        tmpRow = retData[i];
        tmpRow[i] = myDiagonalR[i];
        for (int j = i + 1; j < tmpColDim; j++) {
            tmpRow[j] = tmpData[j][i];
        }
    }

    return retVal;
}
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:26,代码来源:RawQR.java


示例7: toVolatilities

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
/**
 * Will extract the standard deviations (volatilities) from the input covariance matrix. If "cleaning" is
 * enabled small variances will be replaced with a new minimal value.
 */
public static PrimitiveMatrix toVolatilities(final Access2D<?> covariances, final boolean clean) {

    final int tmpSize = (int) Math.min(covariances.countRows(), covariances.countColumns());

    final Builder<PrimitiveMatrix> retVal = PrimitiveMatrix.FACTORY.getBuilder(tmpSize);

    if (clean) {

        final AggregatorFunction<Double> tmpLargest = PrimitiveAggregator.LARGEST.get();
        MatrixStore.PRIMITIVE.makeWrapper(covariances).get().visitDiagonal(0, 0, tmpLargest);
        final double tmpLimit = tmpLargest.doubleValue() * tmpSize * PrimitiveFunction.SQRT.invoke(PrimitiveMath.MACHINE_EPSILON);

        for (int ij = 0; ij < tmpSize; ij++) {
            final double tmpVariance = covariances.doubleValue(ij, ij);
            if (tmpVariance < tmpLimit) {
                retVal.set(ij, PrimitiveFunction.SQRT.invoke(tmpLimit));
            } else {
                retVal.set(ij, PrimitiveFunction.SQRT.invoke(tmpVariance));
            }
        }

    } else {

        for (int ij = 0; ij < tmpSize; ij++) {
            retVal.set(ij, PrimitiveFunction.SQRT.invoke(covariances.doubleValue(ij, ij)));
        }
    }

    return retVal.get();
}
 
开发者ID:optimatika,项目名称:ojAlgo-finance,代码行数:35,代码来源:FinanceUtils.java


示例8: compute

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
@Override
public Iterator<MatrixStore<N>> compute(final Partition partition, final TaskContext context) {
    ProgrammingError.throwIfNull(partition, context);
    if (partition instanceof Partition2D) {
        return this.compute((Partition2D) partition, context);
    } else {
        throw new IllegalArgumentException();
    }
}
 
开发者ID:optimatika,项目名称:ojAlgo-extensions,代码行数:10,代码来源:OtherBlockMatrixRDD.java


示例9: getProjectionMatrix

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
/**
 * Returns an orthonormal projection Matrix that can be used to project input vectors into the
 * k-dimensional space represented by the sketch.
 * @return An orthonormal Matrix object
 */
public Matrix getProjectionMatrix() {
  final SingularValue<Double> svd = SingularValue.make(B_);
  svd.compute(B_);
  final MatrixStore<Double> m = svd.getQ2().transpose();

  // not super efficient...
  final Matrix result = Matrix.builder().build(k_, d_);
  for (int i = 0; i < k_ - 1; ++i) { // last SV is 0
    result.setRow(i, m.sliceRow(i).toRawCopy1D());
  }

  return result;
}
 
开发者ID:DataSketches,项目名称:sketches-vector,代码行数:19,代码来源:FrequentDirections.java


示例10: calc

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public Matrix calc(Matrix source) {
	MatrixStore<Double> matrix = null;
	if (source instanceof OjalgoDenseDoubleMatrix2D) {
		matrix = ((OjalgoDenseDoubleMatrix2D) source).getWrappedObject();
	} else {
		matrix = new OjalgoDenseDoubleMatrix2D(source).getWrappedObject();
	}
	org.ojalgo.matrix.decomposition.LU<Double> lu = LUDecomposition.makePrimitive();
	lu.compute(matrix);
	return new OjalgoDenseDoubleMatrix2D(lu.getInverse());
}
 
开发者ID:ujmp,项目名称:universal-java-matrix-package,代码行数:12,代码来源:Inv.java


示例11: calc

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public Matrix calc(Matrix source) {
	MatrixStore<Double> matrix = null;
	if (source instanceof OjalgoDenseDoubleMatrix2D) {
		matrix = ((OjalgoDenseDoubleMatrix2D) source).getWrappedObject();
	} else {
		matrix = new OjalgoDenseDoubleMatrix2D(source).getWrappedObject();
	}
	Cholesky<Double> chol = CholeskyDecomposition.makePrimitive();
	chol.compute(matrix);
	return new OjalgoDenseDoubleMatrix2D(chol.getInverse());
}
 
开发者ID:ujmp,项目名称:universal-java-matrix-package,代码行数:12,代码来源:InvSPD.java


示例12: testCholeskySolveInverse

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public void testCholeskySolveInverse() {

        final PhysicalStore<ComplexNumber> tmpRandomComplexStore = MatrixUtils.makeRandomComplexStore(4, 9);
        final PhysicalStore<Double> tmpVctr = PrimitiveDenseStore.FACTORY.copy(tmpRandomComplexStore);
        final MatrixStore<Double> tmpMtrx = tmpVctr.multiply(tmpVctr.transpose());

        this.doTestSolveInverse(Cholesky.PRIMITIVE.make(), tmpMtrx);
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:9,代码来源:DesignCase.java


示例13: invert

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public MatrixStore<Double> invert(final Access2D<?> original, final PhysicalStore<Double> preallocated) throws RecoverableCondition {

        final double[][] tmpData = this.reset(original, false);

        this.getRawInPlaceStore().fillMatching(original);

        this.doDecompose(tmpData, false);

        if (this.isSolvable()) {
            return this.getInverse(preallocated);
        } else {
            throw RecoverableCondition.newMatrixNotInvertible();
        }
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:15,代码来源:RawEigenvalue.java


示例14: getQ2

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public MatrixStore<N> getQ2() {

        if (!myValuesOnly && this.isComputed() && (myQ2 == null)) {
            if (myTransposed) {
                myQ2 = this.makeQ1();
            } else {
                myQ2 = this.makeQ2();
            }
        }

        return myQ2;
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:13,代码来源:SingularValueDecomposition.java


示例15: _testQR

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public void _testQR() {

        final MatrixStore<Double> tmpProblematic = ExtremeElementsCase.getVerySmall();

        final QR<BigDecimal> tmpBig = QR.BIG.make();
        final QR<ComplexNumber> tmpComplex = QR.COMPLEX.make();
        final QR<Double> tmpPrimitive = QR.PRIMITIVE.make();
        final QR<Double> tmpJama = new RawQR();

        TestUtils.assertTrue("Big.compute()", tmpBig.decompose(MatrixStore.BIG.makeWrapper(tmpProblematic)));
        TestUtils.assertTrue("Complex.compute()", tmpComplex.decompose(MatrixStore.COMPLEX.makeWrapper(tmpProblematic)));
        TestUtils.assertTrue("Primitive.compute()", tmpPrimitive.decompose(tmpProblematic));
        TestUtils.assertTrue("Jama.compute()", tmpJama.decompose(tmpProblematic));

        if (MatrixDecompositionTests.DEBUG) {
            BasicLogger.debug("Big Q", tmpBig.getQ());
            BasicLogger.debug("Complex Q", tmpComplex.getQ());
            BasicLogger.debug("Primitive Q", tmpPrimitive.getQ());
            BasicLogger.debug("Jama Q", tmpJama.getQ());
        }

        TestUtils.assertEquals("QR.reconstruct() Big", tmpProblematic, tmpBig.reconstruct(), PRECISION);
        TestUtils.assertEquals("QR.reconstruct() Complex", tmpProblematic, tmpComplex.reconstruct(), PRECISION);
        TestUtils.assertEquals("QR.reconstruct() Primitive", tmpProblematic, tmpPrimitive.reconstruct(), PRECISION);
        TestUtils.assertEquals("QR.reconstruct() Jama", tmpProblematic, tmpJama.reconstruct(), PRECISION);

        final SingularValue<Double> tmpSVD = new RawSingularValue();
        tmpSVD.decompose(tmpProblematic);

        TestUtils.assertEquals("rank() SVD vs Big", tmpSVD.getRank(), tmpBig.getRank());
        TestUtils.assertEquals("rank() SVD vs Complex", tmpSVD.getRank(), tmpComplex.getRank());
        TestUtils.assertEquals("rank() SVD vs Primitive", tmpSVD.getRank(), tmpPrimitive.getRank());
        TestUtils.assertEquals("rank() SVD vs Jama", tmpSVD.getRank(), tmpJama.getRank());

    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:36,代码来源:ExtremeElementsCase.java


示例16: makeD

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
@Override
protected MatrixStore<N> makeD() {
    if (myHermitian) {
        return myHermitianDelegate.getD();
    } else {
        return myGeneralDelegate.getD();
    }
}
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:9,代码来源:DynamicEvD.java


示例17: getC11

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
MatrixStore<Double> getC11(final K[] args) {

        final int tmpLength = args.length;

        final PrimitiveDenseStore retVal = FACTORY.makeZero(tmpLength, tmpLength);

        for (int j = 0; j < tmpLength; j++) {
            for (int i = 0; i < tmpLength; i++) {
                retVal.set(i, j, myCovarianceFunction.invoke(args[i], args[j]));
            }
        }

        return retVal;
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:15,代码来源:GaussianField.java


示例18: doTest

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
private static void doTest(final PhysicalStore<Double> originalMatrix, final Array1D<ComplexNumber> expectedDiagonal, final NumberContext accuracyContext) {

        MatrixStore<Double> tmpRecreatedMatrix;

        final Schur<Double> tmpSchurDecomp = Schur.makePrimitive();
        tmpSchurDecomp.decompose(originalMatrix);

        final Array1D<ComplexNumber> tmpDiagonal = tmpSchurDecomp.getDiagonal();
        final MatrixStore<Double> tmpU = tmpSchurDecomp.getU();
        final MatrixStore<Double> tmpQ = tmpSchurDecomp.getQ();

        if (MatrixDecompositionTests.DEBUG) {
            BasicLogger.debug("Diagonal = {}", tmpDiagonal);
            BasicLogger.debug("U = {}", tmpU);
            BasicLogger.debug("Q = {}", tmpQ);
        }

        tmpRecreatedMatrix = Schur.reconstruct(tmpSchurDecomp);
        if (MatrixDecompositionTests.DEBUG) {
            BasicLogger.debug("Original = {}", originalMatrix);
            BasicLogger.debug("Recreated = {}", tmpRecreatedMatrix);
        }
        TestUtils.assertEquals(originalMatrix, tmpRecreatedMatrix, accuracyContext);

        expectedDiagonal.sortDescending();
        tmpDiagonal.sortDescending();
        TestUtils.assertEquals(expectedDiagonal, tmpDiagonal, accuracyContext);
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:29,代码来源:SchurTest.java


示例19: invert

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public final MatrixStore<N> invert(final Access2D<?> original, final PhysicalStore<N> preallocated) throws RecoverableCondition {

        this.decompose(this.wrap(original));

        if (this.isSolvable()) {
            return this.getInverse(preallocated);
        } else {
            throw RecoverableCondition.newMatrixNotInvertible();
        }
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:11,代码来源:CholeskyDecomposition.java


示例20: solve

import org.ojalgo.matrix.store.MatrixStore; //导入依赖的package包/类
public MatrixStore<N> solve(final Access2D<?> body, final Access2D<?> rhs, final PhysicalStore<N> preallocated) throws RecoverableCondition {

        this.decompose(this.wrap(body));

        if (this.isSolvable()) {
            return this.getSolution(this.wrap(rhs), preallocated);
        } else {
            throw RecoverableCondition.newEquationSystemNotSolvable();
        }
    }
 
开发者ID:optimatika,项目名称:ojAlgo,代码行数:11,代码来源:CholeskyDecomposition.java



注:本文中的org.ojalgo.matrix.store.MatrixStore类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Content类代码示例发布时间:2022-05-22
下一篇:
Java CloseableAnimatedImage类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap