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
e7646a44
Commit
e7646a44
authored
Feb 01, 2011
by
Marco Ratto
Browse files
disable warnings in octave + semicolon
parent
45cf10ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/parallel/InitializeComputationalEnvironment.m
View file @
e7646a44
...
...
@@ -33,6 +33,16 @@ function InitializeComputationalEnvironment()
% 'octave'. Then if the field is empty it is necessary to fill it with the
% default value.
% Deactivate some 'Parallel/Warning' message in Octave!
% Comment the line 'warning('off');' in order to view the warning message
% in Octave!
if
exist
(
'OCTAVE_VERSION'
),
warning
(
'off'
);
end
global
options_
for
j
=
1
:
length
(
options_
.
parallel
),
...
...
@@ -58,7 +68,7 @@ end
% parallel computations with Strategy == 1 delete the traces (if exists) of
% previous computations.
delete
([
'P_slave_*End.txt'
])
delete
([
'P_slave_*End.txt'
])
;
masterParallel
(
options_
.
parallel
,[],[],[],[],[],[],
options_
.
parallel_info
,
1
);
return
\ No newline at end of file
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