フィルターのクリア

plotting 100 times in same plot

2 ビュー (過去 30 日間)
Mayank Lakhani
Mayank Lakhani 2015 年 7 月 14 日
編集済み: bio lim 2015 年 7 月 15 日
I want to plot the output x1, for 100 times on same graph. Since i am introducing randn noise in signal, output must be changing little bit everytime. Therefore, i can figure out, effect of noise on the signal. Thanks in advance.
t = [ 0 : 1 : 40 ]; % time samples
f = 500; % input frequency
fs = 8000; % sampling frequency
x = sin(2*pi*f/fs*t);
init_phase = randn(1,length(t));
x1 = x + init_phase;
plot(x1);

採用された回答

bio lim
bio lim 2015 年 7 月 14 日
編集済み: bio lim 2015 年 7 月 15 日
t = [0 : 40]; % time samples
f = 500; % input frequency
fs = 8000; % sampling frequency
x = sin(2*pi*f/fs*t);
for k = 1 : 100
init_phase(k, :) = randn(1,length(t));
x1(k,:) = x + init_phase(k,:)
end
plot(x1);

その他の回答 (1 件)

Mayank Lakhani
Mayank Lakhani 2015 年 7 月 14 日
Thanks coffee :). This will help me.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by