AT\B
B
8283848586878889909192
public void testDenseLUtranspose() { int n = A.numRows(); DenseLU lu = new DenseLU(n, n); lu.factor(A.copy()); lu.transSolve(I); Matrix J = I.transAmult(A, new DenseMatrix(n, n)); for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j) if (i != j)