⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 diffnew.m

📁 国外计算机科学教材系列 numerial method using matlab (third edition)
💻 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) 1999 by John H. Mathews and Kurtis D. Fink%To accompany the textbook:%NUMERICAL METHODS Using MATLAB,%by John H. Mathews and Kurtis D. Fink%ISBN 0-13-270042-5, (c) 1999%PRENTICE HALL, INC.%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 + -