Exemplo n.º 1
0
        public static LinearSolverSparse <DMatrixSparseCSC, DMatrixRMaj> qr(FillReducing permutation)
        {
            ComputePermutation <DMatrixSparseCSC> cp = FillReductionFactory_DSCC.create(permutation);
            QrLeftLookingDecomposition_DSCC       qr = new QrLeftLookingDecomposition_DSCC(cp);

            return(new LinearSolverQrLeftLooking_DSCC(qr));
        }
Exemplo n.º 2
0
 public LinearSolverQrLeftLooking_DSCC(QrLeftLookingDecomposition_DSCC qr)
 {
     this.qr = qr;
 }