MATLAB - 3D Plotting and Visualization
What will be the visible effect of running this MATLAB code?
figure;
axis([0 10 0 100]);
for x = 1:10
y = x^2;
plot(x, y, 'ro');
drawnow;
pause(0.3);
end