標籤

C (1) maple (2) Matlab (11) paper (1) python (14)

2011年7月17日 星期日

數值微分 三點

function numerical_diff = ND3(f,x,h)

f_1=f(x);
f_2=f(x+h);
f_3=f(x+2*h);


numerical_diff = ((-3/2)*f_1+2*f_2-(1/2)*f_3)./h;

end

沒有留言:

張貼留言