Skip to content
Snippets Groups Projects
Verified Commit c6bbf498 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

X13: fix option check

Detected by MATLAB Code Analyzer app.
parent c50a7ed6
No related branches found
No related tags found
No related merge requests found
Pipeline #9851 passed
......@@ -22,7 +22,7 @@ if ~isempty(o.estimate.file)
error('Options ARIMA.model and ESTIMATE.file not compatible!');
elseif ~isempty(o.arima.ar)
error('Options ARIMA.ar and ESTIMATE.file not compatible!');
elseif ~isempty(o.arima.model)
elseif ~isempty(o.arima.ma)
error('Options ARIMA.ma and ESTIMATE.file not compatible!');
elseif ~isempty(o.regression.user)
error('Options REGRESSION.user and ESTIMATE.file not compatible!');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment