Plotting Convergence Graph from Bisection Method

2 views (last 30 days)
none

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

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!