gpt4 book ai didi

c++ - 如何在 C++ 中使用单个模板参数传递两个 lambda 函数

转载 作者:太空狗 更新时间:2023-10-29 23:34:55 25 4
gpt4 key购买 nike

我正在编写一个程序来计算 voigt 分布的数值。但是,当我尝试使用单个类模板参数 F 传递 gauss 和 lorentz 函数时遇到问题,即使它们属于同一类型。

当我使用两个模板参数时,比如说 F1F2,它就像一个魅力。但是只要只有一个,g++ 就会抛出一个错误。立即将 lambda 作为 splot 的(卷积)参数传递没有帮助。

#define _USE_MATH_DEFINES

#include <iostream>
#include <cmath>
#include <functional>

using namespace std;

#define MIN -10.
#define MAX 10.
#define EPS 0.01

template <typename T, class F> T trapezoid(F f, T a, T b, T eps) {
T result = T(0);
while (a <= b) {
result += f(a);
a += eps;
}
result -= (f(a) + f(b)) / T(2);
return result * eps;
}

template <class F>
double splot(F g, F l, double x, double sigma, double gamma) {

auto s = [g, l, x, sigma, gamma](double x_prime)->double {
return g(x_prime, sigma) * l(x - x_prime, gamma);
};

return trapezoid(s, MIN, MAX, EPS);
}

int main (void) {
double x = 0., sigma = 1.5, gamma = 0.1;

auto gauss = [](double x, double sigma)->double {
return exp(-1*x*x / (2*sigma*sigma)) / (sigma * sqrt(2*M_PI));
};

auto lorentz = [](double x, double gamma)->double {
return gamma / (M_PI*(x*x + gamma*gamma));
};

cout << "x: " << x << endl << "V(x): " <<
splot(gauss, lorentz, x, sigma, gamma) << endl;

return 0;
}

最佳答案

我建议您使用 std::function<>如下图:

typedef std::function<double(double,double)> func;

func gauss = [](double x, double sigma)->double {
return exp(-1*x*x / (2*sigma*sigma)) / (sigma * sqrt(2*M_PI));
};

func lorentz = [](double x, double gamma)->double {
return gamma / (M_PI*(x*x + gamma*gamma));
};

cout << "x: " << x << endl << "V(x): " <<
splot(gauss, lorentz, x, sigma, gamma) << endl;`

正如@Christophe 指出的那样,lambda 将具有不同的类型,而另一方面,确保您为所有方法保持相同的类型。

关于c++ - 如何在 C++ 中使用单个模板参数传递两个 lambda 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55559897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com