フィルターのクリア

Windowing a sine signal

4 ビュー (過去 30 日間)
Suraj Narayan
Suraj Narayan 2020 年 10 月 18 日
コメント済み: Ameer Hamza 2020 年 10 月 18 日
I dont know what is windowing. Or it is writen wrong, So correct me if it is wrong and help me to solve this problem.
I tried but it is out-off my knowledge.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 18 日
編集済み: Ameer Hamza 2020 年 10 月 18 日
This shows an example of windowing a signal
t = linspace(-2*pi, 2*pi);
y = sin(t);
window = (t-0 > 0) - (t-2 > 0);
windowed_y = window.*y;
subplot(2,1,1)
plot(t, y);
subplot(2,1,2)
plot(t, windowed_y);
  2 件のコメント
Suraj Narayan
Suraj Narayan 2020 年 10 月 18 日
Thanks it's a great help...
Ameer Hamza
Ameer Hamza 2020 年 10 月 18 日
I am glad to be of help!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatched Filter and Ambiguity Function についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by