Skip to content

Commit 80da617

Browse files
committed
241013.014646.CST add signif3 in prof.m
1 parent a3715fe commit 80da617

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

matlab/tests/prof.m

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@
7171
output{7} = profile(argin{:});
7272
options = rmfield(options, {'eval_options'});
7373

74+
% Precision of function evaluation ~ 1.0e-3
75+
options.eval_options = struct('signif', 3);
76+
argin = [varargin, {options}];
77+
output{8} = profile(argin{:});
78+
options = rmfield(options, {'eval_options'});
79+
7480

7581
outputfiles = struct();
7682
prob_types = fieldnames(output{1});

0 commit comments

Comments
 (0)