Skip to content

Commit

Permalink
Deleted appending of '*' to file names in the demo scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminBlankertz committed Aug 23, 2012
1 parent 4e24483 commit aa714f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demos/demo_analysis_ERD.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Wps= [42 49]/hdr.fs*2;
[n, Ws]= cheb2ord(Wps(1), Wps(2), 3, 40);
[filt.b, filt.a]= cheby2(n, 50, Ws);
[cnt, mrk_orig]= file_readBV([file '*'], 'Fs',100, 'Filt',filt, ...
[cnt, mrk_orig]= file_readBV(file, 'Fs',100, 'Filt',filt, ...
'Clab', {'not','E*'});

%% Marker struct
Expand Down
4 changes: 2 additions & 2 deletions demos/demo_analysis_ERPs.m
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
file= 'VPibv_10_11_02/calibration_CenterSpellerMVEP_VPibv';

%% Load data
hdr= file_readBVheader([file '*']);
hdr= file_readBVheader(file);
Wps= [42 49]/hdr.fs*2;
[n, Ws]= cheb2ord(Wps(1), Wps(2), 3, 40);
[filt.b, filt.a]= cheby2(n, 50, Ws);
[cnt, mrk_orig]= file_readBV([file '*'], 'Fs',100, 'Filt',filt);
[cnt, mrk_orig]= file_readBV(file, 'Fs',100, 'Filt',filt);

%% Marker struct
stimDef= {[31:46], [11:26];
Expand Down
2 changes: 1 addition & 1 deletion demos/demo_analysis_Spectra.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Wps= [42 49]/hdr.fs*2;
[n, Ws]= cheb2ord(Wps(1), Wps(2), 3, 40);
[filt.b, filt.a]= cheby2(n, 50, Ws);
[cnt, mrk_orig]= file_readBV([file '*'], 'Fs',100, 'Filt',filt);
[cnt, mrk_orig]= file_readBV(file, 'Fs',100, 'Filt',filt);

%% Marker struct
stimDef= {[65 70], [74 192];
Expand Down

0 comments on commit aa714f5

Please sign in to comment.