Why is my function outputting a blank graph:

1 view (last 30 days)
function add(a, b, n)
figure, hold on
for i=1:n
a = [a+2];
b = [b*2];
fprintf("%8.3f", a), fprintf("%19.4f\n", b);
plot(a, b)
end
end

Answers (2)

per isakson
per isakson on 20 Jan 2019
Edited: per isakson on 20 Jan 2019
Replace
plot(a,b)
by
plot(a,b,'d')
and look up plot in the documentation

Walter Roberson
Walter Roberson on 20 Jan 2019
plot() creates line() objects. Each line object is drawn independently of the others, and only connects the points listed in the one line object. Also the default is not to put in any markers. Your a and b are scalars, so when you plot(a,b) they have no point to connect to so no line is drawn, and since the default is no marker, the individual points are not drawn. per's solution is to add a marker, so at least one point at a time would be drawn.
In order to have the points connected, you can:
  • remember the previous point and draw back to it, so the graph would turn out to be made of a number of small lines; or
  • store all of the points until the end of the loop and then plot all of the stored points at one time, so that a single line is drawn connecting all of them; or
  • use animatedline() to create a basic line, and then each cycle of the loop, addpoints() to extend the line.

Categories

Find more on 2-D and 3-D 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!