Skip to content

Commit

Permalink
fix: use correct formatting operator
Browse files Browse the repository at this point in the history
closes #32
  • Loading branch information
hannatolle committed Feb 13, 2022
1 parent 23890ce commit 75212df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/matlab/operations/InvertWarp.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
end

% minimum acceptable Jacobian value for constraint (default 0.01)
command = sprintf('%s --jmin=%s', command, config.jmin);
command = sprintf('%s --jmin=%0.4f', command, config.jmin);

% maximum acceptable Jacobian value for constraint (default 100.0)
command = sprintf('%s --jmax=%s', command, config.jmax);
command = sprintf('%s --jmax=%0.4f', command, config.jmax);

% turn on debugging output
if config.debug || config.d
Expand Down

0 comments on commit 75212df

Please sign in to comment.