% EEGFILTFFT - (high|low|band)-pass filter data using inverse fft
% (without using the Matlab signal processing toolbox)
% Usage:
% >> [smoothdata] = eegfiltfft(data,srate,locutoff,hicutoff);
% >> [smoothdata] = eegfiltfft(data,srate,locutoff,hicutoff,epochframes,filtorder,revfilt);
%
% Inputs:
% data = (channels,frames*epochs) data to filter
% srate = data sampling rate (Hz)
% locutoff = low-edge frequency in pass band (Hz) {0 -> lowpass}
% hicutoff = high-edge frequency in pass band (Hz) {0 -> highpass}
%
% Optional inputs:
% epochframes = frames per epoch (filter each epoch separately {def/0: data is 1 epoch}
% filtorder = argument not used (but required for symmetry with EEGFILT function).
% revfilt = [0|1] reverse filter (i.e. bandpass filter to notch filter). {0}
%
% Outputs:
% smoothdata = smoothed data
%
% Known problems:
% The signal drop off is much smaller compared to standard filtering methods
%
% Author: Arnaud Delorme, SCCN/INC/UCSD, La Jolla, 2003
%
% See also: EEGFILT
% inspired from a google group message
% http://groups.google.com/groups?q=without+%22the+signal+processing+toolbox%22&hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=f56893ae.0311141025.3069d4f8%40posting.google.com&rnum=8
% Copyright (C) Arnaud Delorme, SCCN/INC/UCSD, arno@salk.edu
%
% This file is part of EEGLAB, see http://www.eeglab.org
% for the documentation and details.
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% 1. Redistributions of source code must retain the above copyright notice,
% this list of conditions and the following disclaimer.
%
% 2. Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
% THE POSSIBILITY OF SUCH DAMAGE.
function smoothdata = eegfiltfft(data, fs, lowcut, highcut, epochframes, filtorder, revfilt);
if nargin < 4
help eegfiltfft;
end
[chans frames] = size(data);
if nargin < 5 || epochframes == 0
epochframes = frames;
end
if nargin < 7
revfilt = 0;
end
epochs = frames/epochframes;
if epochs ~= round(epochs)
error('Epochframes does not divide the total number of frames');
end
fv=reshape([0:epochframes-1]*fs/epochframes,epochframes,1); % Frequency vector for plotting
%figure;
%plot(fv, 20*log(abs(X))/log(10)) % Plot power spectrum in dB scale
%xlabel('Frequency [Hz]')
%ylabel('Signal power [dB]')
% find closest freq in fft decomposition
% --------------------------------------
if lowcut ~= 0
[tmp idxl]=min(abs(fv-lowcut)); % Find the entry in fv closest to 5 kHz
else
idxl = 0;
end
if highcut ~= 0
[tmp idxh]=min(abs(fv-highcut)); % Find the entry in fv closest to 5 kHz
else
idxh = ceil(length(fv)/2);
end
% filter the data
% ---------------
smoothdata = zeros(chans,frames);
for e = 1:epochs % filter each epoch, channel
for c=1:chans
X=fft(data(c,(e-1)*epochframes+1:e*epochframes));
if revfilt
X(idxl+1:idxh-1)=0;
if mod(length(X),2) == 0
X(end/2:end)=0;
else
X((end+1)/2:end)=0;
end
else
X(1:idxl)=complex(0);
X(end-idxl:end)=complex(0);
X(idxh:end)=complex(0);
end;
smoothdata(c,(e-1)*epochframes+1:e*epochframes) = 2*real(ifft(X));
if epochs == 1
if rem(c,20) ~= 0
fprintf('.');
else
fprintf('%d',c);
end
end
end
end
fprintf('\n');