-
-
LogarithmRegress.rar
对数回归方程 LogarithmRegress.cs
方程模型为 Y=a*LnX+b
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1,数据越满足该模型。
-
ModifyShiftAverageRegress.rar
移动平均预测 ModifyShiftAverageRegress.cs
移动平均也可画趋势图,如下:
public double forecast(int interval)
移动平均认为数据是时间序列数据,该方法预测interval个时间间隔后的值
public override double[] getTrendArray()
得到趋势数组,该数组的数据直接在图形中展示出来就可以产生趋势线。
-
-
-
design_patterns_templates-0_2.zip
Any cs. student a ny average university will at some point be faced with design patterns (dp for the rest of the article). Dp s are generic principles or best practices from software development. This article is not an introduction to dp s, since others ...
-
cs.rar
客户机服务器通信程序
实现客户机和服务器之间的通信,实现同步操作
-
-
g729_audio_encode.rar
... of commendation G.729 with ANNEX B Coding of Speech at 8 kbit/s using Conjugate-Structure Algebraic-Code-Excited Linear-Prediction (CS-ACELP) with Voice Activity Decision(VAD), Discontinuous Transmission(DTX), and Comfort Noise Generation(CNG).
-
-
char.rar
CS聊天模型先运行server端
再运行client端
client端可以同时打开多个窗口 可以建立聊天室
-