Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Kaiser window for fft in matlab

Status
Not open for further replies.

Chinmaye

Full Member level 3
Joined
Jan 18, 2016
Messages
164
Helped
0
Reputation
0
Reaction score
1
Trophy points
1,298
Activity points
3,145
Hello all,

I am new to DSP and I am trying to implement windows for FFT. In matlab, I tried the following codes to understand different windows(Main lobe and side lobes).
Code:
x1 = 0.0* cos(2*pi*f1*t +0.2) + 0.85* cos(2*pi*f2*t +1.8)
x2 = x1.*blackman(length(x1))'
x3 = x1.*hanning(length(x1))'
x4 = x1.*hamming(length(x1))'
x5 = x1.*bartlett(length(x1))'

The same doesn't work for Kaiser. Could someone please explain me this.
What is the command to understand Kaiser window in Matlab
 

It works pretty well for Kaiser windows. Check the documentation

doc kaiser

What differs Kaiser from the other windows is the Beta - factor. Check the documentation.

And a hint when it comes to FFTs; it is worth checking up coherent sampling which might save you some of the issues that windowing can bring.
 

Sir, Could you plz post the link of the document
 

It's built-in in MATLAB. Just type

doc kaiser

in the console. Then you will be directed to the help documentation which has examples and links to further information.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top