- 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.
- x=-2:0.01:2: This will create a array x from -2 to +2 with a difference of 0.01
- plot(x,y1,'-b'): This will plot the values of array x wrt to array y1.
- err : This is error variable.
- 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.
what means this?
2 views (last 30 days)
Show older comments
what means this?
- iter,eps
- x=-2:0.01:2
- plot(x,y1,'-b')
- err
- at last >fprintf('%2.0f&10.4f%10.4f%10.4%f10.4f/n', result);
0 Comments
Accepted Answer
KSSV
on 5 Oct 2020
Edited: KSSV
on 5 Oct 2020
MATLAB is an easy language. You can check all those your self with out asking these simple questions.
0 Comments
More Answers (0)
See Also
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!