MATLAB: How to plot the first 200 points of each vector on the same graph

graphhandelMATLABplotvector

what would I have to put in the plot command in order to plot only the first 200 points of each vector vs. t on the same graph?
load handel
sound (y,Fs)
%%
multiplier = 0.10;
noise = randn(length(y),1) * multiplier;
%%
sound_w_noise = y + noise;
sound (sound_w_noise, Fs)
t = 1:length(y);
plot(???)

Best Answer

plot(t(1:200),y(1:200))