📄 diffnew.m
字号:
function [A,df]=diffnew(X,Y)%Input - X is the 1xn abscissa vector% - Y is the 1xn ordinate vector%Output - A is the 1xn vector containing the coefficients of the Nth% degree Newton polynomial% - df is the approximate derivative% NUMERICAL METHODS: Matlab Programs% (c) 2004 by John H. Mathews and Kurtis D. Fink% Complementary Software to accompany the textbook:% NUMERICAL METHODS: Using Matlab, Fourth Edition% ISBN: 0-13-065248-2% Prentice-Hall Pub. Inc.% One Lake Street% Upper Saddle River, NJ 07458A=Y;N=length(X);for j=2:N for k=N:-1:j A(k)=(A(k)-A(k-1))/(X(k)-X(k-j+1)); endendx0=X(1);df=A(2);prod=1;n1=length(A)-1;for k=2:n1 prod=prod*(x0-X(k)); df=df+prod*A(k+1);end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -