Package com.numb3r3.common.math

Examples of com.numb3r3.common.math.Matrix.det()


        Sigma.put(0, 0, 2.3);
        Sigma.put(1, 1, 1.5);
        Sigma.put(2, 2, 1.7);
        Sigma.put(3, 3, 2.0);

        System.out.println("Det: " + Sigma.det());
        System.out.println("Normal density: " + Gaussian.mphi(x, mu, Sigma));
        // System.out.println("PDF: " + Gaussian.pdf());

        double y = 0.1;
        double mean = 1.5;
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.