apache commons Math是一组偏向科学计算为主的函数,主要是针对线性代数,数学分析,概率和统计等方面。

我虽然是数学专业毕业,当年也是抱着《数学分析》啃,但是好久不用,这些概念都开始生疏,写一点例子,仅作参考。

 packagetest.ffm83.commons.math;

 importorg.apache.commons.math3.linear.Array2DRowRealMatrix; 

 import org.apache.commons.math3.linear.LUDecomposition; 

 importorg.apache.commons.math3.linear.RealMatrix; 

 importorg.apache.commons.math3.stat.descriptive.moment.GeometricMean; 

 importorg.apache.commons.math3.stat.descriptive.moment.Kurtosis; 

 importorg.apache.commons.math3.stat.descriptive.moment.Mean; 

 importorg.apache.commons.math3.stat.descriptive.moment.Skewness; 

 importorg.apache.commons.math3.stat.descriptive.moment.StandardDeviation; 

 importorg.apache.commons.math3.stat.descriptive.moment.Variance; 

 import org.apache.commons.math3.stat.descriptive.rank.Max; 

 importorg.apache.commons.math3.stat.descriptive.rank.Min; 

 importorg.apache.commons.math3.stat.descriptive.rank.Percentile; 

 importorg.apache.commons.math3.stat.descriptive.summary.Product; 

 importorg.apache.commons.math3.stat.descriptive.summary.Sum; 

 importorg.apache.commons.math3.stat.descriptive.summary.SumOfSquares;

 /**

  * 简单使用commons Math方法

  * @author 范芳铭

  */

 public class MathUsage {

      public static void main(String[] args) { 

         double[] values = new double[] { 0.33, 1.33,0.27333, 0.3, 0.501, 

                 0.444, 0.44, 0.34496, 0.33,0.3, 0.292, 0.667 }; 

         Min min = new Min(); 

         Max max = new Max(); 

         Mean mean = new Mean(); // 算术平均值 

         Product product = new Product();//乘积 

         Sum sum = new Sum(); 

         Variance variance = new Variance();//方差 

         System.out.println("min: " +min.evaluate(values)); 

         System.out.println("max: " +max.evaluate(values)); 

         System.out.println("mean: " +mean.evaluate(values)); 

         System.out.println("product:" + product.evaluate(values)); 

         System.out.println("sum: " +sum.evaluate(values)); 

         System.out.println("variance:" + variance.evaluate(values)); 

         Percentile percentile = newPercentile(); // 百分位数 

         GeometricMean geoMean = newGeometricMean(); // 几何平均数,n个正数的连乘积的n次算术根叫做这n个数的几何平均数 

         Skewness skewness = new Skewness(); //Skewness(); 

         Kurtosis kurtosis = new Kurtosis(); //Kurtosis,峰度 

         SumOfSquares sumOfSquares = newSumOfSquares(); // 平方和 

         StandardDeviation StandardDeviation =new StandardDeviation();//标准差 

         System.out.println("80 percentilevalue: " 

                 + percentile.evaluate(values,80.0)); 

         System.out.println("geometricmean: " + geoMean.evaluate(values)); 

         System.out.println("skewness:" + skewness.evaluate(values)); 

         System.out.println("kurtosis:" + kurtosis.evaluate(values)); 

         System.out.println("sumOfSquares:" + sumOfSquares.evaluate(values)); 

        System.out.println("StandardDeviation: " +StandardDeviation.evaluate(values)); 

        System.out.println("-------------------------------------"); 

         // Create a real matrix with two rowsand three columns 

         double[][] matrixData = { {1d,2d,3d},{2d,5d,3d}}; 

         RealMatrix m = newArray2DRowRealMatrix(matrixData); 

         System.out.println(m); 

         // One more with three rows, twocolumns 

         double[][] matrixData2 = { {1d,2d},{2d,5d}, {1d, 7d}}; 

         RealMatrix n = newArray2DRowRealMatrix(matrixData2);         

         // Note: The constructor copies  the input double[][] array.          

         // Now multiply m by n 

         RealMatrix p = m.multiply(n); 

        System.out.println("p:"+p); 

        System.out.println(p.getRowDimension());    // 2 

        System.out.println(p.getColumnDimension()); // 2          

         // Invert p, using LUdecomposition 

         RealMatrix pInverse = newLUDecomposition(p).getSolver().getInverse(); 

         System.out.println(pInverse); 

     } 

 }

 运行结果如下:

 min: 0.27333

 max: 1.33

 mean: 0.46269083333333333

 product: 2.3429343978460972E-5

 sum: 5.552289999999999

 variance: 0.08757300031742428

 80 percentile value: 0.5674000000000001

 geometric mean: 0.4112886050879374

 skewness: 2.670095445623868

 kurtosis: 7.718241303328169

 sumOfSquares: 3.5322966905000004

 StandardDeviation: 0.2959273564870681

 -------------------------------------

 Array2DRowRealMatrix{{1.0,2.0,3.0},{2.0,5.0,3.0}}

 p:Array2DRowRealMatrix{{8.0,33.0},{15.0,50.0}}

 2

 2

 Array2DRowRealMatrix{{-0.5263157895,0.3473684211},{0.1578947368,-0.0842105263}}

apache commons math 示例代码的更多相关文章

  1. 编写更少量的代码:使用apache commons工具类库

    Commons-configuration   Commons-FileUpload   Commons DbUtils   Commons BeanUtils  Commons CLI  Commo ...

  2. Apache Commons IO入门教程(转)

    Apache Commons IO是Apache基金会创建并维护的Java函数库.它提供了许多类使得开发者的常见任务变得简单,同时减少重复(boiler-plate)代码,这些代码可能遍布于每个独立的 ...

  3. [转]Apache Commons IO入门教程

    Apache Commons IO是Apache基金会创建并维护的Java函数库.它提供了许多类使得开发者的常见任务变得简单,同时减少重复(boiler-plate)代码,这些代码可能遍布于每个独立的 ...

  4. 【java】org.apache.commons.lang3功能示例

    org.apache.commons.lang3功能示例 package com.simple.test; import java.util.Date; import java.util.Iterat ...

  5. Apache Commons CLI 开发命令行工具示例

    概念说明Apache Commons CLI 简介 虽然各种人机交互技术飞速发展,但最传统的命令行模式依然被广泛应用于各个领域:从编译代码到系统管理,命令行因其简洁高效而备受宠爱.各种工具和系统都 提 ...

  6. 使用 Apache Commons CLI 开发命令行工具示例

    Apache Commons CLI 简介 Apache Commons CLI 是 Apache 下面的一个解析命令行输入的工具包,该工具包还提供了自动生成输出帮助文档的功能. Apache Com ...

  7. 使用 Apache Commons CLI 解析命令行参数示例

    很好的输入参数解析方法 ,转载记录下 转载在: https://www.cnblogs.com/onmyway20xx/p/7346709.html Apache Commons CLI 简介 Apa ...

  8. 上传文件代码报错,java.lang.ClassNotFoundException: org.apache.commons.fileupload.FileItemFactory

    2018-09-11 11:11:08.235 ERROR 14352 --- [nio-8080-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : ...

  9. Java Socket长连接示例代码

    SocketListenerPusher.java代码如下: import java.io.IOException; import java.net.InetSocketAddress; import ...

随机推荐

  1. PDMS二次开发之PML开发一些常见查询语句

    1.查找session 以及session number var !DBname DBname !db = object db(!DBname) !session = !db.lastsession( ...

  2. Spring boot 学习记录

    java的三种配置方式 基于xml的配置 基于注解的配置 基于java的配置 Spring boot推荐的配置方式:java配置+注解配置 一.注解 SpringBootApplication :等价 ...

  3. hibernate学习(5)——一对多关系表达

    一对多实现 1. 实现类 package com.alice.hibernate02.vo; import java.util.HashSet; import java.util.Set; publi ...

  4. js windows.open()模拟POST提交

    function openPostWindow (url,name, data1, data2)        {            var tempForm = document.createE ...

  5. oracle表大小

    查某一用户下的表 select SEGMENT_NAME,TABLESPACE_NAME,sum(BYTES/1024/1024)||'M'  from USER_extents where SEGM ...

  6. golang调用c++文件

    简要步骤: 1,将c++ 的方法提取到头文件.h中( ) 2,编译cc(c++)文件为动态链接库so文件 3,将头文件放入include目录 .so放入lib目录 4,go程序中指定 CFLAGS 和 ...

  7. 数据库连接池原理 与实现(动脑学院Jack老师课后自己的练习有感)

    第一步: 首先创建一个数据库连接池的接口: 数据库连接池接口有两个主要的方法,其中一个getConnection();  通过数据库连接池返回给用户封装的数据库连接对象 createConnectio ...

  8. net面试题

    简述 private. protected. public. internal 修饰符的访问权限.答 . private :   私有成员, 在类的内部才可以访问.   protected : 保护成 ...

  9. C#注解属性的感想一:

    C#当中Attribute(中文注解属性)已经知道这个概念已经很久很久了,不过悲剧的是在实际项目当中重来没有用它来做过什么东西,以致对它的理解总是很浅薄,更谈不上如何在实际项目中运用它.最近在学习&l ...

  10. Windows 64位 RabbitMQ 安装配置

    1:下载Erlang,地址:http://www.erlang.org/download/otp_win64_19.0.exe ,双击安装即可(首先装) 2:下载RabbitMQ,RabbitMQ 3 ...