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

📄 hamming.m

📁 关于数值计算的matlab程序代码,包含了很多的实用的算法.程序全部可以直接用的,有详细的英文注释.
💻 M
字号:
function H=hamming(f,T,Y)%Input   - f is the function entered as a string 'f'%        - T is the vector of abscissas%        - Y is the vector of ordinates%Remark.  The first four coordinates of T and Y must%         have starting values obtained with RK4%Output - H=[T' Y'] where T is the vector of abscissas and%         Y is the vector of ordinates%  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 07458n=length(T);if n<5, break, end;F=zeros(1,4);F=feval(f,T(1:4),Y(1:4));h=T(2)-T(1);pold=0;cold=0;for k=4:n-1      %Predictor   pnew=Y(k-3)+(4*h/3)*(F(2:4)*[2 -1 2]');      %Modifier   pmod=pnew+112*(cold-pold)/121;   T(k+1)=T(1)+h*k;   F=[F(2) F(3) F(4) feval(f,T(k+1),pmod)];      %Corrector   cnew=(9*Y(k)-Y(k-2)+3*h*(F(2:4)*[-1 2 1]'))/8;   Y(k+1)=cnew+9*(pnew-cnew)/121;   pold=pnew;   cold=cnew;   F(4)=feval(f,T(k+1),Y(k+1));endH=[T' Y'];

⌨️ 快捷键说明

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