摘要: package com.math; /** * Matrix * @author ciscolee * */ public class MathMatrix { public static void main(String[] args) { /** * |1 2 3 | * |4 5 6 | * 阅读全文
posted @ 2020-06-03 15:58 CiscoLee 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 这里实现了java编程求和、平均值、方差、标准差,求标准差的时候使用到了java提供的方法求算术平方根。 改天利用算法自己编写一个算术平方根,先贴上以上几种求法,方法的复用性和拓展性就不写了 这里只有求平均数两种情况的方法写了。 package com.math; /** * * @author c 阅读全文
posted @ 2020-06-03 00:47 CiscoLee 阅读(1294) 评论(0) 推荐(0) 编辑