使用 C++ 编写的线性外推程序
在本文中,我们将讨论一个实现线性外推的程序。
外推的定义是一个过程,在该过程中,某个函数所需的取值超出了函数定义的下限或上限。
在进行线性外推时,通过在函数图形上作切线来找到超出范围的取值,以确定所需取值。应用线性外推时,结果相当精确。
示例
#include <bits/stdc++.h> using namespace std; //structuring the values of x and y struct Data { double x, y; }; //calculating the linear extrapolation double calc_extrapolate(Data d[], double x){ double y; y = d[0].y + (x - d[0].x) / (d[1].x - d[0].x) * (d[1].y - d[0].y); return y; } int main(){ Data d[] = { { 1.2, 2.7 }, { 1.4, 3.1 } }; double x = 2.1; cout << "Value of y (x = 2.1) : " << calc_extrapolate(d, x) << endl; return 0; }
输出
Value of y (x = 2.1) : 4.5
广告