Plotting Convergence Graph from Bisection Method

Answers (1)

darova
darova on 5 Apr 2021
Edited: darova on 5 Apr 2021
Try this
while %condition
% code
line(iter,erorr,'marker','.')
iter = iter + 1;
end

1 Comment

It's a sample code, you should modify you code according to this

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 3 Apr 2021

Edited:

on 6 Apr 2021

Community Treasure Hunt

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

Start Hunting!