seidel.m

来自「提供一个直接搜索算法程序」· M 代码 · 共 40 行

M
40
字号
function [P,iter]= seidel(G,P,delta, max1)%Input  -  G is the nonlinear system saved in the M-file G.m%       -  P is the initial guess at the solution %       -  delta is the error bound%       - max1 is the number of iterations%Output - P is the seidel approximation to the solution%     	- iter is the number of iterations required%  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(P);for k=1:max1   X=P;      % X is the kth approximation to the solution   for j=1:N           A=feval('G',X);      % Update the terms of X as they are calculated      X(j)=A(j);        end   err=abs(norm(X-P));   relerr=err/(norm(X)+eps);   P=X;   iter=k;   if (err<delta)|(relerr<delta)     break   endend

⌨️ 快捷键说明

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