ratinterp1.m

来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 26 行

M
26
字号
function f = ratinterp1(t,ts,fs,phis)
% 
% Compute a single interpolated point f(t) given the interpolating data
% and the inverse differences
%
% function f = ratinterp1(t,ts,fs,phis)
%
% t = point at which to evaluate
% ts = vector of independent data
% fs = vector of depdendent data
% phis = inverse differences
%
% f = interpolated value

% Copyright 1999 by Todd K. Moon


n = length(ts);
D = 1;
N = phis(n);
for j=n-1:-1:1
  oldD = D;
  D = N;                    % flip the last one upside down
  N = (t - ts(j)) .* oldD + phis(j) .* D;
end
f = N ./ D;

⌨️ 快捷键说明

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