Package net.jcores.jre.cores

Examples of net.jcores.jre.cores.CoreNumber.variance()


    @SuppressWarnings("boxing")
    public static void main(String[] args) {
        CoreNumber number = $(2.0, 4, 6, null, 8, 100);

        System.out.println(number.average());
        System.out.println(number.variance());
       
        System.out.println($.range(1, 50000).random(10).as(CoreNumber.class).standarddeviation());
        System.out.println($.range(1, 50).random(6).string().join(" "));
        System.out.println($.range(1, 50).random(1.0).string().join(" "));
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.