Examples of rcond()


Examples of no.uib.cipr.matrix.BandCholesky.rcond()

        int n = L.numRows();

        BandCholesky c = new BandCholesky(n, kl, false);
        c.factor(L.copy());

        c.rcond(L);
    }

    public void testUpperBandCholeskyrcond() {
        int n = U.numRows();
View Full Code Here

Examples of no.uib.cipr.matrix.BandCholesky.rcond()

        int n = U.numRows();

        BandCholesky c = new BandCholesky(n, ku, true);
        c.factor(U.copy());

        c.rcond(U);
    }
}
View Full Code Here

Examples of no.uib.cipr.matrix.BandLU.rcond()

        int n = A.numRows();

        BandLU lu = new BandLU(n, kl, ku);
        lu.factor(A.copy());

        lu.rcond(A, Matrix.Norm.One);
        lu.rcond(A, Matrix.Norm.Infinity);
    }
}
View Full Code Here

Examples of no.uib.cipr.matrix.BandLU.rcond()

        BandLU lu = new BandLU(n, kl, ku);
        lu.factor(A.copy());

        lu.rcond(A, Matrix.Norm.One);
        lu.rcond(A, Matrix.Norm.Infinity);
    }
}
View Full Code Here

Examples of no.uib.cipr.matrix.DenseCholesky.rcond()

        int n = L.numRows();

        DenseCholesky c = new DenseCholesky(n, false);
        c.factor(L.copy());

        c.rcond(L);
    }

    public void testUpperDenseCholeskyrcond() {
        int n = U.numRows();
View Full Code Here

Examples of no.uib.cipr.matrix.DenseCholesky.rcond()

        int n = U.numRows();

        DenseCholesky c = new DenseCholesky(n, true);
        c.factor(U.copy());

        c.rcond(U);
    }
}
View Full Code Here

Examples of no.uib.cipr.matrix.DenseLU.rcond()

  public void testDenseLUrcond() {
    int n = A.numRows();
    DenseLU lu = new DenseLU(n, n);
    lu.factor(A.copy());

    lu.rcond(A, Matrix.Norm.One);
    lu.rcond(A, Matrix.Norm.Infinity);
  }

  public void testDenseLUToInput() {
    // MTJ bug in DenseLU code
View Full Code Here

Examples of no.uib.cipr.matrix.DenseLU.rcond()

    int n = A.numRows();
    DenseLU lu = new DenseLU(n, n);
    lu.factor(A.copy());

    lu.rcond(A, Matrix.Norm.One);
    lu.rcond(A, Matrix.Norm.Infinity);
  }

  public void testDenseLUToInput() {
    // MTJ bug in DenseLU code
View Full Code Here

Examples of no.uib.cipr.matrix.PackCholesky.rcond()

        int n = L.numRows();

        PackCholesky c = new PackCholesky(n, false);
        c.factor(L.copy());

        c.rcond(L);
    }

    public void testUpperPackCholeskyrcond() {
        int n = U.numRows();
View Full Code Here

Examples of no.uib.cipr.matrix.PackCholesky.rcond()

        int n = U.numRows();

        PackCholesky c = new PackCholesky(n, true);
        c.factor(U.copy());

        c.rcond(U);
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.