Very basic question about fir1 command

3 Ansichten (letzte 30 Tage)
Pelin Kaya
Pelin Kaya am 30 Jun. 2022
Kommentiert: Star Strider am 30 Jun. 2022
I'm all new to Matlab and everything including, i was taking some classes to learn matlab and signal processing and there was this question that my teacher asked during an exam and i still havent figured it out . She basically gave us a signal ;
t=0:1/500:0.3
n=cos(2*pi*10*t) + sin(2*pi*50*t);
and asked us to design a FIR filter with 32-order and then plot the signal. There's no other explanation, i'm assuming i should use fir1 command but i'm not sure how. If you guys help me, that'd really help.

Akzeptierte Antwort

Star Strider
Star Strider am 30 Jun. 2022
Probably something like this —
t=0:1/500:0.3;
n=cos(2*pi*10*t) + sin(2*pi*50*t);
Fs = 500;
Fn = Fs/2;
b = fir1(32, 25/Fn);
figure
freqz(b, 1, 2^16, Fs)
n_filt = filtfilt(b, 1, n);
figure
plot(t, n)
hold on
plot(t, n_filt)
hold off
grid
legend('Original Signal','Filtered Signal', 'Location','best')
Experiment with it!
.
  2 Kommentare
Pelin Kaya
Pelin Kaya am 30 Jun. 2022
Thanks, i'll!
Star Strider
Star Strider am 30 Jun. 2022
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by