Home > eeg > eeglab_petrmods > init_filtspec_struct.m

init_filtspec_struct

PURPOSE ^

fs = init_filtspec_struct;

SYNOPSIS ^

function fs = init_filtspec_struct

DESCRIPTION ^

 fs = init_filtspec_struct;

 Initializes fields in a structure with filtering parameters

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function fs = init_filtspec_struct
0002 % fs = init_filtspec_struct;
0003 %
0004 % Initializes fields in a structure with filtering parameters
0005 %
0006 
0007 fs = struct('low_cutoff',[], ...  % low frequency cutoff
0008     'high_cutoff', [], ...
0009     'filt_order', [], ...
0010     'filt_type', '', ...
0011     'inpath', '', ...  % directory with input files
0012     'outpath', '' ...  % directory for output files
0013     );
0014 
0015 return

Generated on Wed 20-Sep-2023 04:00:50 by m2html © 2003