標籤

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

2011年7月17日 星期日

數值微分

function numerical_diff = ND(f,x,h)

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

numerical_diff = 1/12*(f_1-8*f_2+8*f_3-f_4)./h;

end

沒有留言:

張貼留言