Package randomevents.generator

Examples of randomevents.generator.GeneratorChecking


        expectationLabel.setText(String.format("%6.4f", statistical.getExpectation()));
        secondInitialMomentLabel.setText(String.format("%6.4f", statistical.getSecondInitialMoment()));
        thirdInitialMomentLabel.setText(String.format("%6.4f", statistical.getThirdInitialMoment()));

        printRandomNumbers();
        GeneratorChecking generatorChecking = new GeneratorChecking();
        chiWebEngine.loadContent(String.format("<html><h2><center>χ<sup>2</sup> = %6.4f</center></h2></html>", generatorChecking.pearson(histogram, a, b, count, randomGenerator)));
        lambdaWebEngine.loadContent(String.format("<html><h2><center>λ = %6.4f</center></h2></html>", generatorChecking.kolmogorov(histogram, randoms, randomGenerator)));
    }
View Full Code Here

TOP

Related Classes of randomevents.generator.GeneratorChecking

Copyright © 2018 www.massapicom. 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.