Cosmetic change (moved conditional statement inside verbatim block).

bgp-dev
Stéphane Adjemian (Ryûk) 2022-10-06 12:58:35 +02:00
parent c1ec097ea0
commit c7b7bd9b8d
Signed by: stepan
GPG Key ID: 295C1FE89E17EB3C
1 changed files with 5 additions and 4 deletions

View File

@ -36,11 +36,12 @@ model;
PhysicalCapitalStock = (1-delta)*PhysicalCapitalStock(-1) + s*Output;
end;
if ~isoctave
% The levenberg-marquardt algorithm is not available in octave's
% implementation of fsolve, so we skip this check for Octave
verbatim;
if ~isoctave
% The levenberg-marquardt algorithm is not available in octave's
% implementation of fsolve, so we skip this check for Octave
bgp.write(M_);
MC = 100;
KY = NaN(MC,1);
@ -91,6 +92,6 @@ verbatim;
assert(abs(mean(EG(~isnan(EG)))-EfficiencyGrowth_ss)<1e-8)
assert(var(EG(~isnan(EG)))<1e-16);
end;
end
end;