There is a low pass filter . And my sampling frequency is fs. 

the Matlab code of the lpf is as follows:

% y = LPFilter(x,fc),

% Second order zero-phase Lowpass filter

%

% inputs:

% x: vector or matrix of input data (channels x samples)

% fc: -3dB cut-off frequency normalized by the sampling frequency

%

% output:

% y: vector or matrix of filtered data (channels x samples)

In the code fc (cut-off frequency) is replaced by 0.7/fs . Can anyone explain why fc is replaced by 0.7/fs ?

Similar questions and discussions