本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
zysnba - xiangjie88
- sgqt
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wallimn
- wy_19921005
- vipbooks
- benladeng5225
- 龙儿筝
- javashop
- ranbuijj
- fantaxy025025
- zw7534313
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- jh108020
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- luxurioust
- lzyfn123
- forestqqqq
- nychen2000
- Xeden
- zhanjia
- wjianwei666
- ajinn
- hanbaohong
- 喧嚣求静
- jickcai
- kingwell.leng
- mwhgJava
- silverend
- lich0079
- lchb139128
最新文章列表
apache的math库中的回归——regression(翻译)
这个Math库,虽然不向weka那样专业的ML库,但是用户友好,易用。
多元线性回归,协方差和相关性(皮尔逊和斯皮尔曼),分布测试(假设检验,t,卡方,G),统计。
数学库中还包含,Cholesky,LU,SVD,QR,特征根分解,真不错。
基本覆盖了:线代,统计,矩阵,
最优化理论
曲线拟合
常微分方程
遗传算法(GA),
还有3维的运算。。。
真应有尽有。
...
判断一个数是质数的几种方法
质数也叫素数,是只能被1和它本身整除的正整数,最小的质数是2,目前发现的最大的质数是p=2^57885161-1【注1】。
判断一个数是质数的最简单的方法如下:
def isPrime1(n):
for i in range(2, n):
if n % i == 0:
return False
return True
但是在上面的方法中有一些冗余的计算,所以做以下改进
...
Math对象的atan2()
本文主要来自:http://www.w3school.com.cn/js/jsref_atan2.asp
个人做积累学习用
/**从x轴到点(x,y)之间的角度
*@param y 指定点的y坐标
*@param x 指定点的x坐标
*@return -PI到PI之间的值
*/
Math.atan2(y,x);
Math对象的sqrt()
本文内容主要来自:http://www.w3school.com.cn/js/jsref_sqrt.asp
/**
*返回一个数的平方根
*@param x 必须的 >=0
*
*/
Math.sqrt(x);
java.lang.Math
System.out.println(Math.PI);
System.out.println(Math.abs(1.2));
System.out.println(Math.abs(1.2));
System.out.println(Math.abs(1));
System.out.println(Math.abs(111111111));
System.out.println(Mat ...
JavaScript The random() and other Methods of the Math object
The random() Method
The Math.random() method returns a random number between the 0 and the 1, not including either 0 or 1. This is a favorite tool of web sites that are trying to display ra ...
JavaScript Rounding Methods of the Math object
The next group of methods has to do with rounding decimal values into integers. Three methods — Math.ceil(), Math.floor(), and Math.round() — handle rounding in different ways as described here ...
18、java.util.Date-SimpleDateFormat-Calendar-Math-Random
一、Date类
类 Date 表示特定的瞬间,精确到毫秒。
在 JDK 1.1 之前,类 Date 有两个其他的函数。
它允许把日期解释为年、月、日、小时、分钟和秒值。它也允许格式化和解析日期字符串。
不过,这些函数的 API 不易于实现国际化。
从 JDK 1.1 开始,应该使用 Calendar 类实现日期和时间字段之间转换,
使用 DateFormat 类来格式化和解 ...
Math的属性之对数
Math.LN2 2的自然对数
Math.LN10 10的自然对数
Math.LOG2E 以2为底E的对数
Math.LOG10E 以10为底E的对数
Math.log(x) 返回x的对数(以e为准)
例如
求某数的对数 以2为准
public class Test {
public static void main(String[] args) {
// 1 2 4 8 16 32
System. ...