Package Jama

Examples of Jama.Matrix.cond()


            int r = M.rank();

            print(fixedWidthIntegertoString(r, 7));

            double c = M.cond();

            print(
                    c < 1 / eps
                            ? fixedWidthDoubletoString(c, 12, 3)
                            : "         Inf");
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.