what means this?
  1. iter,eps
  2. x=-2:0.01:2
  3. plot(x,y1,'-b')
  4. err
  5. at last >fprintf('%2.0f&10.4f%10.4f%10.4%f10.4f/n', result);

 채택된 답변

KSSV
KSSV 2020년 10월 5일
편집: KSSV 2020년 10월 5일

0 개 추천

  1. iter,eps: iter is number of iterations. eps stand for a small value. So your code runs either for 10 iterations or till the error goes less than given eps.
  2. x=-2:0.01:2: This will create a array x from -2 to +2 with a difference of 0.01
  3. plot(x,y1,'-b'): This will plot the values of array x wrt to array y1.
  4. err : This is error variable.
  5. at last >fprintf('%2.0f&10.4f%10.4f%10.4%f10.4f/n', result): this is to print the respective values on the screen i.e on command window.
MATLAB is an easy language. You can check all those your self with out asking these simple questions.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

질문:

2020년 10월 5일

편집:

2020년 10월 5일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by