Skip to content

Commit 14cca8f

Browse files
committed
bugfix initialization of groups
1 parent 4bd4d68 commit 14cca8f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

@HOOptions/HOOptions.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@
2929

3030
% Array containing the indices of the experiments
3131
% that share a noise parameter.
32-
expgroups_noise = [1];
32+
expgroups_noise = {1};
3333
% Array containing the indices of the experiments
3434
% that share a scaling parameter.
35-
expgroups_scaling = [1];
35+
expgroups_scaling = {1};
3636
% Array containing the indices of the observables
3737
% that share a noise parameter.
38-
obsgroups_noise = [1];
38+
obsgroups_noise = {1};
3939
%Array containing the indices of the observables
4040
% that share a scaling parameter.
41-
obsgroups_scaling = [1];
41+
obsgroups_scaling = {1};
4242

4343
% 1 x n_y array of strings indicating scale for the observable
4444
% Valid options are "log","log10" and "lin" for log, log10 or

0 commit comments

Comments
 (0)