...3 from 'double (double,int,int)' to 'double (__cdecl *)在线等...

发布网友 发布时间:2024-10-23 23:35

我来回答

2个回答

热心网友 时间:4分钟前

double CApproximateDlg::GaussLegendre_5p(double a, double b, double f (double ,int, int ), int m, int n)
其中double f (double ,int, int ), 是回调函数,而不是double (double ,int, int ) 3参数。。
你用的时候,拿3参数当成回调函数用了。

热心网友 时间:3分钟前

void CApproximateDlg::AugMatrix(int n, double a, double b, double bb[])
{

for (int i=0;i<n+1;i++)
{
bb[i] = GaussLegendre_5p(a,b,poly2,i,i);
}
}
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com