try_success("QRDecomposition...", "");
} catch (java.lang.RuntimeException e) {
errorCount = try_failure(errorCount, "QRDecomposition...",
"incorrect QR decomposition calculation");
}
SingularValueDecomposition SVD = A.svd();
try {
check(A, SVD.getU().times(SVD.getS().times(SVD.getV().transpose())));
try_success("SingularValueDecomposition...", "");
} catch (java.lang.RuntimeException e) {