摘要:
double MyMethod::getStandardDeviation(double* info, int length){ double result = 0;//存放每个值与平均值差的平方和 double average = MyMethod::getAverage(info, length 阅读全文
摘要:
double getRound(double a){ return (int(a * 100 + 0.5)) / 100.0; };//利用的是强制转换 阅读全文
摘要:
1、做参数 IMCShowLabelStruct MyMethod::getIMCShowData(double a[][600]){ IMCShowLabelStruct result; return result;} 2、地址 double test[a][b];//在内存中按顺序存储,每b个单 阅读全文