Фазовая задержка компенсации IIR Filter Matlab 2012 - PullRequest
0 голосов
/ 02 апреля 2019

Я разработал следующий фильтр и хотел бы найти нулевую фазную задержку между входом [x] и фильтрованным сигналом [Filtsig]. Я знаю, как использовать y = filtfilt (d, x), но мой matlab поддерживает только следующий случай: Case1 Filtsig = filtfilt (sos, g, x) Case2 Filtsig = фильтрат (b, a, x)

function Hd = untitled0
%UNTITLED0 Returns a discrete-time filter object.

% MATLAB Code
% Generated by MATLAB(R) 9.0 and the Signal Processing Toolbox 7.2.
% Generated on: 02-Apr-2019 20:28:37

% Butterworth Lowpass filter designed using FDESIGN.LOWPASS.

% All frequency values are in Hz.

Fs = 350;  % Sampling Frequency

Fpass = 60;          % Passband Frequency
Fstop = 70;          % Stopband Frequency
Apass = 1;           % Passband Ripple (dB)
Astop = 80;          % Stopband Attenuation (dB)
match = 'stopband';  % Band to match exactly

% Construct an FDESIGN object and call its BUTTER method.
h  = fdesign.lowpass(Fpass, Fstop, Apass, Astop, Fs);
Hd = design(h, 'butter', 'MatchExactly', match);

Filtsig=filtfilt(sos,g,x)
Filtsig=filtfilt(b,a,x)


% Construct an FDESIGN object and call its BUTTER method.
h  = fdesign.lowpass(Fpass, Fstop, Apass, Astop, Fs);
Hd = design(h, 'butter', 'MatchExactly', match);

Filtsig=filtfilt(sos,g,x)
Filtsig=filtfilt(b,a,x)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...