132133134135136137138139140141142
LAPACK lapack = LAPACK.getInstance(); /* * Calculate factorisation */ lapack.dgeqp3(m, n, Afact.getData(), Matrices.ld(m), jpvt, tau, work, work.length, info); if (info.val < 0) throw new IllegalArgumentException();