Examples of JamaMatrixBigDecimal


Examples of eas.math.matrix.bigDecimal.jama.JamaMatrixBigDecimal

     * <code>This</code> is not changed.
     *
     * @return  Another matrix that is the inverse (or pseudo-inverse) of <code>this</code>.
     */
    public MatrixBigDecimal inverse() {
        JamaMatrixBigDecimal a = new JamaMatrixBigDecimal(this.matrix);
        JamaMatrixBigDecimal i = a.inverse(MatrixBigDecimal.GLOBAL_ROUNDING_MODE);
        MatrixBigDecimal inv = new MatrixBigDecimal(i.getArray());
        return inv;
    }
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.