what do you obtain when you do the f
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Star Strider
2021 年 10 月 11 日
‘what do you obtain ?’
t = linspace(-pi, pi, 500);
y = @(t) rectpuls(t/pi).*cos(25*t);
figure
plot(t, y(t))
grid
xlabel('Time')
ylabel('Amplitude')
.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!