intrpf.f

来自「Fortran的数学物理方程数值算法源程序。这是"Numerical Metho」· F 代码 · 共 19 行

F
19
字号
      real*8 function intrpf( xi, x, y )! Function to interpolate between data points! using Lagrange polynomial (quadratic)! Inputs!   xi   The x value where interpolation is computed!   x    Vector of x coordinates of data points (3 values)!   y    Vector of y coordinates of data points (3 values)! Output!   yi   The interpolation polynomial evaluated at xi      real*8 xi, x(3), y(3), yi  !* Calculate yi = p(xi) using Lagrange polynomial      yi = (xi-x(2))*(xi-x(3))/((x(1)-x(2))*(x(1)-x(3)))*y(1)     &   + (xi-x(1))*(xi-x(3))/((x(2)-x(1))*(x(2)-x(3)))*y(2)     &   + (xi-x(1))*(xi-x(2))/((x(3)-x(1))*(x(3)-x(2)))*y(3)      intrpf = yi      return      end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?