404142434445464748
} static Matrix createLUPInverse(AMatrix m) { LUSolver lus = new LUSolver(); lus.setA(m); return lus.invert().toMatrix(); } }