A\B
B
6667686970717273747576
public void testDenseLU() { int n = A.numRows(); DenseLU lu = new DenseLU(n, n); lu.factor(A.copy()); lu.solve(I); Matrix J = I.mult(A, new DenseMatrix(n, n)); for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j) if (i != j)