Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dóra Kocsis
dynare
Commits
52fa569f
Commit
52fa569f
authored
Jun 28, 2011
by
Stéphane Adjemian
Browse files
Changed default value of the tolerance parameter.
parent
e097f7c8
Changes
1
Show whitespace changes
Inline
Side-by-side
mex/sources/kalman_steady_state/kalman_steady_state.cc
View file @
52fa569f
...
...
@@ -178,7 +178,7 @@ mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
mwSize
LDX
=
LDA
;
mwSize
LDWORK
=
max
((
mwSize
)
7
*
((
mwSize
)
2
*
n
+
(
mwSize
)
1
)
+
(
mwSize
)
16
,
(
mwSize
)
16
*
n
);
LDWORK
=
max
(
LDWORK
,
(
mwSize
)
2
*
n
+
p
,
(
mwSize
)
3
*
p
);
double
tolerance
=
-
1
.0
;
double
tolerance
=
.0
000000000000001
;
lapack_int
INFO
;
// Outputs of subroutine sb02OD
double
rcond
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment