Re: Plot all results from while-loop simultaneously



Hi Milan,
Maybe :
x = 1:100;
for element = x
y=f(element);
end
plot(x,y);

Caroline
.