Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frédéric Karamé
dynare
Commits
8f14007e
Verified
Commit
8f14007e
authored
5 months ago
by
Frédéric Karamé
Committed by
Sébastien Villemot
4 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Add warning message for mode_compute=11.
parent
b510fb6c
Branches
4.3
No related tags found
No related merge requests found
Pipeline
#11037
passed
4 months ago
Stage: build
Stage: test
Stage: pkg
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
matlab/optimization/dynare_minimize_objective.m
+5
-3
5 additions, 3 deletions
matlab/optimization/dynare_minimize_objective.m
with
5 additions
and
3 deletions
matlab/optimization/dynare_minimize_objective.m
+
5
−
3
View file @
8f14007e
...
...
@@ -496,9 +496,11 @@ switch minimizer_algorithm
[
LB
,
UB
]
=
set_bounds_to_finite_values
(
bounds
,
options_
.
huge_number
);
[
opt_par_values
,
fval
,
exitflag
]
=
simpsa
(
func2str
(
objective_function
),
start_par_value
,
LB
,
UB
,
simpsaOptions
,
varargin
{:});
case
11
options_
.
cova_compute
=
0
;
subvarargin
=
[
varargin
(
1
),
varargin
(
3
:
6
),
varargin
(
8
)];
opt_par_values
=
online_auxiliary_filter
(
start_par_value
,
subvarargin
{:});
% waiting for validation
% options_.cova_compute = 0;
% subvarargin = [varargin(1), varargin(3:6), varargin(8)];
% opt_par_values = online_auxiliary_filter(start_par_value, subvarargin{:});
warning
(
'Online particle filter is no more available with mode_compute=11; use posterior_sampler with option online'
)
case
12
if
isoctave
error
(
'Option mode_compute=12 is not available under Octave'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment