MATLAB - 2D Plotting
Consider this MATLAB code:
What will be displayed in the figure window?
t = 0:0.2:1;
plot(t, sin(2*pi*t));
hold on;
plot(t, cos(2*pi*t));
hold off;
plot(t, t);
What will be displayed in the figure window?
