Chp7ex2.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:1k
源码类别:

其他行业

开发平台:

Matlab

  1. % Iterative solution Using Newton method
  2. iter = 0;                                  % Iteration counter
  3. Df = 10;                  % Error in Df is set to a high value
  4. Lambda = input('Enter estimated value of Lambda = ');
  5. fprintf('n ')
  6. disp(['     Iter      Df         J       DLambda   Lambda'  ...
  7. '      x         y'])
  8. while abs(Df)  >= 0.0001                % Test for convergence
  9. iter = iter + 1;                           % No. of iterations
  10. x = 8*Lambda/(Lambda + 1);
  11. y = 6*Lambda/(Lambda + 1);
  12. Df = (x- 8)^2 + (y - 6)^2 - 25;                     % Residual
  13. J = -200/(Lambda + 1)^3;                          % Derivative
  14. Delambda =-Df/J;                          % Change in variable
  15. disp([iter, Df, J, Delambda, Lambda, x, y])
  16. Lambda = Lambda + Delambda;              % Successive solution
  17. end
  18. %Graphical Demonstration of Example 7.2
  19. wt=0:.01:2*pi;
  20. z =8+j*6+ 5*(cos(wt) + j*sin(wt));
  21. x=0:.01:12; y=6/8*x;
  22. plot(real(z),imag(z), x, y), grid
  23. xlabel('x'), ylabel('y')
  24. axis([0 , 14, 0, 14]), axis('square')