Skip to content

Commit

Permalink
Added epoch average example
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxvandenBoom committed Aug 10, 2023
1 parent 43c457f commit 2cf5b07
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions tests/matlab/visualize_epochPerfTestResults.m
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
%
% Script to visualize the performances of the different epoch routines on the file format readers
% Script to visualize the performances of the different epoch (& average) routines for different file formats
%

%{
% epoch
load('D:\BIDS_erdetect\fileio_results\results_epoch_win7__20230726_080359.mat');
test_formats = {'BrainVision (multiplexed)', 'bv_multiplexed'; ...
'BrainVision (vectorized)', 'bv_vectorized'; ...
load('D:\BIDS_erdetect\fileio_results\results_epoch_win11__20230809_122713__2.mat');
test_formats = {'BrainVision (multiplexed)', 'bv_mult'; ...
'BrainVision (vectorized)', 'bv_vect'; ...
'EDF', 'edf'; ...
'MEF3', 'mef'};
test_functions = {'by_channels', 'by_trials'};
%}
test_functions = {'by_channels', 'by_trials', 'by_prep_mem', 'by_prep_speed'};


% epoch average
load('D:\BIDS_erdetect\fileio_results\results_epochAverage_win7__20230807_054418.mat');
%{
% epoch & average
load('D:\BIDS_erdetect\fileio_results\results_epoch_averages_win11__20230808_90723__10.mat');
test_formats = {'BrainVision (multiplexed)', 'bv_mult'; ...
'BrainVision (vectorized)', 'bv_vect'; ...
'EDF', 'edf'; ...
'MEF3', 'mef'};
test_functions = {'by_ch_cond_trial', 'by_cond_trials', 'by_prep_mem', 'by_prep_speed'};

%}

%%

Expand Down

0 comments on commit 2cf5b07

Please sign in to comment.