フィルターのクリア

Hey guys I'm new to MAT LAB.

1 回表示 (過去 30 日間)
PAUL
PAUL 2014 年 3 月 21 日
編集済み: Image Analyst 2014 年 3 月 23 日
How to design t

採用された回答

Carlos
Carlos 2014 年 3 月 21 日
The way signals are generated here http://www.mathworks.es/es/help/matlab/ref/fft.html is what you are looking for.The only parameter to change is the frequency. In your case your frequencies are 0.05 and 0.15 Hz.
Fs = 1000; % Sampling frequency
T = 1/Fs; % Sample time
L = 1000; % Length of signal
t = (0:L-1)*T; % Time vector
% Sum of a 0.05 Hz sinusoid and a 0.15 Hz sinusoid
x = sin(2*pi*0.05*t) + sin(2*pi*0.15*t);
plot(t,x);
  1 件のコメント
Image Analyst
Image Analyst 2014 年 3 月 23 日
編集済み: Image Analyst 2014 年 3 月 23 日
Paul !!! Did you not read your other post before you posted this? Please read http://www.mathworks.com/matlabcentral/answers/122729#comment_203688 And why is your original post clipped!???

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSignal Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by