A\B
B
8081828384858687888990
int n = L.numRows(); BandCholesky c = new BandCholesky(n, kl, false); c.factor(L.copy()); c.solve(I); Matrix J = I.mult(L, new DenseMatrix(n, n)); for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j) if (i != j)
979899100101102103104105106107
int n = U.numRows(); BandCholesky c = new BandCholesky(n, ku, true); c.factor(U.copy()); c.solve(I); Matrix J = I.mult(U, new DenseMatrix(n, n)); for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j) if (i != j)