Commit 4ffc98f8 authored by Jay Dubb's avatar Jay Dubb
Browse files

v1.25.4

-- Fix hmrG_SubjAvg.m which generates matlab error when the input is empty instead of gracefully exiting with empty output.
parent ad58826c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ On
on

% Data Storage Scheme
files
memory

% Auto Save Acquisition Files
No
+5 −5
Original line number Diff line number Diff line
@@ -39,6 +39,10 @@ for iBlk = 1:length(yAvgSubjs{1})
        yAvgOut(iBlk) = DataClass();        
        
        yAvg      = yAvgSubjs{iSubj}(iBlk).GetDataTimeSeries('reshape');
        if isempty(yAvg)
            continue;
        end
        
        tHRF      = yAvgSubjs{iSubj}(iBlk).GetTime();
        nT        = nTrialsSubjs{iSubj}{iBlk};
        datatype  = yAvgSubjs{iSubj}(iBlk).GetDataTypeLabel();
@@ -48,10 +52,6 @@ for iBlk = 1:length(yAvgSubjs{1})
            ml    = yAvgSubjs{iSubj}(iBlk).GetMeasList();
        end
                
        if isempty(yAvg)
            continue;
        end
        
        nCond = size(nT,2);
        yAvgOut(iBlk).SetTime(tHRF);
        
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@ function vrnnum = getVernum()

vrnnum{1} = '1';   % Major version #
vrnnum{2} = '25';  % Major sub-version #
vrnnum{3} = '3';   % Minor version #
vrnnum{3} = '4';   % Minor version #
vrnnum{4} = '0';   % Minor sub-version # or patch #: 'p1', 'p2', etc