Skip to content

Commit d252249

Browse files
committed
Fix var name bug for loading
1 parent 00b6347 commit d252249

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MultiPSD_C_matlab_analysis.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
fooof_results = [];
2525
for ind = 0:1
26-
fooof_results = load(strcat('f_res_', string(ind)));
27-
fooof_results = [outputs, output];
26+
cur_result = load(strcat('f_res_', string(ind)));
27+
fooof_results = [fooof_results, cur_result];
2828
end
2929

3030
% Check out outputs

0 commit comments

Comments
 (0)