Skip to content

Commit dd68e3b

Browse files
authored
Update zef_turn_compartment_onoff.m
Commended the if condition because it was giving an error. Pending for evaluation.
1 parent 6bc0277 commit dd68e3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

m/zef_turn_compartment_onoff.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
c_t = zef.compartment_tags;
44
n_c_t = length(c_t);
55

6-
if isempty(compartment_onoff_vec)
6+
% if isempty(compartment_onoff_vec)
77
compartment_onoff_vec = ones(1,n_c_t);
8-
end
8+
% end
99

1010
for i = 1 : n_c_t
1111

1212
zef.([c_t{i} '_on']) = compartment_onoff_vec(i);
1313

1414
end
1515

16-
end
16+
end

0 commit comments

Comments
 (0)