How do I plot the first 200 points of each vector on the same graph?

10 ビュー (過去 30 日間)
cody madsen
cody madsen 2018 年 11 月 14 日
回答済み: madhan ravi 2018 年 11 月 14 日
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(???)

採用された回答

madhan ravi
madhan ravi 2018 年 11 月 14 日
plot(t(1:200),y(1:200))

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by