我想通过传递函数作为参数来计算从array.dat输入的数组的偏差方差(文件中的数据是8 5 12 6 13 11 9 7 10 14)。我需要定义函数 float var(float,int); 并修改函数 float sum(float()(float,int),int ,int s) ; 完成计算方差的程序。我还想利用相同的函数sum()来计算均值,而不是在单独的循环中计算均值。我有一个提示使用全局变量或在sum()内调用sum(NULL)。
以下是我到目前为止的代码。我正确得到了平均输出,显然没有变化。我想我在这里有一些问题(至少),我可以用一只手。
真的很感激任何帮助。以下是我到目前为止的代码:
//variance.cpp
#include<iostream>
#include<fstream>
using namespace std;
float sum (float (*) (float, int), int*, int s);
float var (float, int);
int main()
{
ifstream inFile;
inFile.open("array.dat");
int a[10] = {8,5,12,6,13,11,9,7,10,14}; // input from array.dat instead
int s = (sizeof a)/4;
cout << "Mean = " << sum(NULL, a, s) << endl;
cout << "Variance = " << sum(var, a, s) << endl;
cout << "\n\n\nPress any key to close console window: ";
char c; cin >> c;
return 0;
}
float sum (float (*pf) (float, int), int *n, int s) {
float sum=0; int *p=n;
for (int i=0; i<s; i++) {
if (pf == NULL) sum+= *p;
else sum+= (*pf)(sum, *p);
p++;
}
return sum/s; //calculates and outputs mean
}
float var (float mean, int k)
{
return 0;
}