Feeds
提问
How do I stop the infinite loop in this fixed point iteration code?
Here is my code: %fixedpoint g=@(x) 1-(1/7).*exp(1).^x; n=1; x(1)=0.5; x(2)=g(x(1)); tol = (0.5*10e-10);...
10 years 前 | 1 个回答 | 0
1
个回答提问
How to plot convergence graph using bisection method code
I am having trouble getting the convergence graph to plot using this code for bisection method. function xc=bijection(f,a,b...
10 years 前 | 1 个回答 | 0