Skip to content
Snippets Groups Projects
Verified Commit f19ab66b authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fix precision issue.

Introduced in patch 8b197bf7 which incidentally reduced the precision to six digits.
parent a2d0ac35
Branches
Tags
No related merge requests found
Pipeline #7169 passed
......@@ -228,7 +228,7 @@ end
calibration = '';
for i=1:rows(pArray)
calibration = sprintf('%s%s = %f;\n', calibration, pArray{i,1}, pArray{i,2});
calibration = sprintf('%s%s = %s;\n', calibration, pArray{i,1}, num2str(pArray{i,2}, 16));
end
% Move the endogenous variables which are not LHS of an equation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment