Skip to content

Commit 12669db

Browse files
committed
Fix method invocations
1 parent 427709a commit 12669db

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

WorkSpace/Dmitri/NegativeFeedbackDelayedProduction.m

+6-5
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,15 @@
6565
SSAsoln = Model.solve;
6666
SSAtime = toc;
6767

68-
save("SSAsoln", SSAsoln);
68+
save SSAtime.mat SSAtime
69+
save SSAsoln.mat SSAsoln
6970

7071
%% Plot trajectories
7172
Model.makePlot(SSAsoln,'trajectories',[],[]) % Make some plots.
7273

7374
%% Protein intermediates
7475

75-
piFSPtimes = zerosLike(M);
76+
piFSPtimes = zeros(1, length(M));
7677
for Mcntr = 1:length(M)
7778
curM = M(Mcntr);
7879
piModel = getNFModelWithProteinIntermediates(...
@@ -89,7 +90,7 @@
8990

9091
%% Operator intermediates
9192

92-
opFSPtimes = zerosLike(M);
93+
opFSPtimes = zeros(1, length(M));
9394
for Mcntr = 1:length(M)
9495
curM = M(Mcntr);
9596
opModel = getNFModelWithOperatorIntermediates(...
@@ -105,6 +106,6 @@
105106
end
106107

107108
disp(piFSPtimes)
108-
save("piFSPtimes", piFSPtimes);
109+
save piFSPtimes.mat piFSPtimes
109110
disp(opFSPtimes)
110-
save("opFSPtimes", opFSPtimes);
111+
save opFSPtimes.mat opFSPtimes

0 commit comments

Comments
 (0)