Examples of kolmogorov()


Examples of randomevents.generator.GeneratorChecking.kolmogorov()

        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)));
    }

    private void updateHistograms() {
        partition = Integer.parseInt(partitionTextField.getText());
        histogram.create(a, b, partition, randoms);
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.