필터 지우기
필터 지우기

Lowpass filter with own cutoff frequency and y axis in dB.

조회 수: 16 (최근 30일)
Reji G
Reji G 2022년 5월 5일
댓글: Reji G 2022년 5월 11일
I wnat to design a Lowpass filter in which I can choose my own cutoff frequency and y axis in dB. I have a signal in time domain.

답변 (1개)

Bhavana Ravirala
Bhavana Ravirala 2022년 5월 9일
Hi Reji,
I understand that you are trying to implement a low pass filter. Using the "lowpass" command in MATLAB output signal from a lowpass filter can be obtained.
Example:
fs = 0.1; % sampling frequency of input signal
t= 0 : 1/fs : 1;
x= sin(2*pi*50*t); % input signal
lowpass(x,3, fs); % setting the higher cutoff frequency as 3Hz
For more information refer to the below documentation:
  댓글 수: 5
Bhavana Ravirala
Bhavana Ravirala 2022년 5월 11일
Hi Reji
From your explanation, I understand that you are trying to implement lowpass filtering to a signal having mixed frequencies.
Example:
Fs = 5*10^7;
t = 0:1/Fs:0.001;
signal = [10*sin(2*pi*50*t(1:10000)) 2*cos(2*pi*2000*t(10001:20000)) 12*sin(2*pi*60000*t(20001:30000)) 3*cos(2*pi*(10^7)*t(30001:end))]; % signal with mixed frequencies
%Now you may try out using multiple cutoff frequencies:
lowpass(signal, 20000, Fs);
lowpass(signal, 200000, Fs);
lowpass(signal, 20000000, Fs);
The power spectrum generation is as the expected outcome.
Reji G
Reji G 2022년 5월 11일
Thank you.
I need x axis in frequency and y axis in dB.
My requireement is:
If my cutoff frequency is 100Hz then, the value of y axis corresponds to 100 Hz(in x axis) should be "-3dB". How to plot the graph in this way ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Filter Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by