-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
26 lines (26 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "math",
"version": "1.0.0",
"description": "在`calculus`中有微积分为微积分实现方法,目前还未进行实现 在`statistics`中包含统计学相关的算法,如协方差,方差,求中位数,平均值,分位数图计算\r - ----`index`:当前库的主要导出文件\r - ----`Variance`:方差实现方法\r - ----`weigth-variance`:加权平均数实现方法\r - ----`QuantilePlot`:分位数图\r - ----`Covariance`:协方差\r - ----`Gaussiandistributio`:高斯正态分布(未实现)\r - ----`Bayes`:贝叶斯概率计算(未实现)\r - ----`Mean`:平均值\r - ----`Media`:中位数\r - ----`Matrix`:矩阵类,实现矩阵的计算,诸如相加,相减,矩阵的逆\r - ----`rank`:排序的实现(未完全实现)\r - ----`StandardDeviation`:标准差\r - ----`vector`:向量的运算\r - ----`Permutations`:阶乘",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build":"tsc --build tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jingyuexing/MathLib.git"
},
"keywords": [
"Math"
],
"author": "jingyuexing",
"license": "MIT",
"bugs": {
"url": "https://github.com/jingyuexing/MathLib/issues"
},
"homepage": "https://github.com/jingyuexing/MathLib#readme"
}