フィルターのクリア

hamming window matlab code

16 ビュー (過去 30 日間)
Abdulkareem
Abdulkareem 2012 年 12 月 11 日
編集済み: Walter Roberson 2020 年 6 月 7 日
hi evrybody i need matlab code for hamming window
  1 件のコメント
qamar alshraideh
qamar alshraideh 2016 年 12 月 19 日
編集済み: Walter Roberson 2020 年 6 月 7 日
Built in function ::
M=30; % length
wc1=.05*pi;
n=0:1:(M-1);
h1 = (wc1/pi)*sinc(wc1/pi*n);
ham=h1.*hamming(M)'; %here we dont need to shift
x=n/pi;
x=x/pi;
plot(x,abs(fft(ham)));
title('Magnitude Response');
xlabel('frequency in pi units')

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

採用された回答

John Petersen
John Petersen 2012 年 12 月 12 日
if x is an n-element input signal and t is the time scale
w = 0.54 - 0.46*cos(2*pi*t/(n-1));
wx = x.*w;
  1 件のコメント
Abdulkareem
Abdulkareem 2012 年 12 月 13 日
thank you sir

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by