使用 Ojalgo 求解 Java 中的线性系统

Using Ojalgo to solve linear systems in Java

我正在尝试使用 Ojalgo 求解 M (NxN) 个线性系统(Ax = B,B = [b1,b2,...bM])。最有效的方法是什么?我还想知道 A 是否是单数(A、B 是 PrimitiveMatrix 类型的对象)。

如有任何帮助,我们将不胜感激。谢谢!

PrimitiveMatrix 具有 fixed/limited 功能集,您也无法控制事情的完成方式。如果您想要选项和控制切换到使用 PrimitiveDenseStore(或任何 MatrixStore 实现)。那么您需要做的就是:

    final LU<Double> tmpLU = LU.PRIMITIVE.make();
    tmpLU.decompose(A);
    if (tmpLU.isSquareAndNotSingular()) {
        x = tmpLU.solve(b);
    } else {
        // Do something else...
    }

你看过 ojAlgo wiki 了吗?

https://github.com/optimatika/ojAlgo/wiki