⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 todo

📁 该文件为c++的数学函数库!是一个非常有用的编程工具.它含有各种数学函数,为科学计算、工程应用等程序编写提供方便!
💻
字号:
* Look at STARPAC ftp://ftp.ucar.edu/starpac/ and Statlibhttp://lib.stat.cmu.edu/ for more ideas* Try using the Kahan summation formula to improve accuracy for theNIST tests (see Brian for details, below is a sketch of the algorithm).      sum = x(1)      c = 0            DO i = 2, 1000000, 1         y = x(i) - c         t = sum + y         c = (t - sum) - y         sum = t      ENDDO* Prevent incorrect use of unsorted data for quartile calculationsusing a typedef for sorted data (?)* Rejection of outliers* Time series. Auto correlation, cross-correlation, smoothing (movingaverage), detrending, various econometric things. Integratedquantities (area under the curve). Interpolation of noisy data/fitting-- maybe add that to the existing interpolation stuff.What aboutmissing data and gaps?   There is a new GNU package called gretl which does econometrics* Statistical tests (equal means, equal variance, etc).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -