フィルターのクリア

what do you obtain when you do the f

1 回表示 (過去 30 日間)
Babacar Dieng
Babacar Dieng 2021 年 10 月 11 日
編集済み: Babacar Dieng 2021 年 10 月 14 日
y(t) = rect(t/pi)*cos(25t)
what do you obtain ? How do you plot it not with Matlab ?
what is FT Y(w)
  3 件のコメント
Babacar Dieng
Babacar Dieng 2021 年 10 月 11 日
the rectangular box function whose FT is the sinC function.
Babacar Dieng
Babacar Dieng 2021 年 10 月 14 日
編集済み: Babacar Dieng 2021 年 10 月 14 日
to do this by hand. you consider the fact that the product is null every where the rect box is null, that is outside of width of box = [-pi/2, pi/2]. Then inside the rect box width, the max value of the the product is 5.
Plot the cosine(25t) inside the box and you get the result. ( freq = 25/2pi, period=1/freq=0.2513, number of period inside the box n= pi/(0.2512) =12.5).

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

採用された回答

Star Strider
Star Strider 2021 年 10 月 11 日
what do you obtain ?
Run it and plot it (using the Signal Processing Toolbox rectpuls function) to see the result —
t = linspace(-pi, pi, 500);
y = @(t) rectpuls(t/pi).*cos(25*t);
figure
plot(t, y(t))
grid
xlabel('Time')
ylabel('Amplitude')
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by