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.

Gaussian filtering signal

Status
Not open for further replies.

KlaussIT

Newbie level 5
Joined
May 10, 2015
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
50
I would like to know how to properly filter a cosinus wave signal with a Gaussian Filter. I thought to use 'conv' to perform it. My code as follows :

Code:
s = cos(2*pi*f*t);
h = 1/(1/(sqrt(2*pi*var))*exp(-t.^2/2*var); %gauss filter
sF = conv(h,s,'same');

I used 'same' to keep the same length. Is it correct this method of filtering ? Another question, I heard about a parameter 'BT' (close to 0.5) for Gaussian Filter, how can I include it ? sigma = BT ?

Thanks for advance.

Best regards.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top