在C++的numeric庫中,有一個std::integral函數可用于計算積分。該函數接受一個起始點、一個結束點和一個函數作為參數,并返回積分結果。例如:
#include <iostream>
#include <numeric>
#include <cmath>
// 定義被積函數
double f(double x) {
return x * x;
}
int main() {
double a = 0.0; // 積分下限
double b = 1.0; // 積分上限
double result = std::integral(f, a, b); // 計算積分結果
std::cout << "The integral of x^2 from 0 to 1 is: " << result << std::endl;
return 0;
}
在上面的例子中,我們定義了一個函數f(x) = x^2,然后使用std::integral函數計算了該函數在區間[0,1]上的積分結果。輸出結果為"The integral of x^2 from 0 to 1 is: 0.333333"。