Added missing output required by some integration tests.

time-shift
Stéphane Adjemian(Charybdis) 2018-09-03 17:38:09 +02:00
parent 5ea0c8098b
commit 044f0f8de6
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
function get_companion_matrix(auxiliary_model_name, auxiliary_model_type)
function [A0, AR, B] = get_companion_matrix(auxiliary_model_name, auxiliary_model_type)
% Gets the companion VAR representation of a PAC auxiliary model.
% Depending on the nature of this auxiliary model the output is
@ -39,6 +39,12 @@ if nargin<2
end
end
if nargout
A0 = [];
AR = [];
B = [];
end
get_ar_ec_matrices(auxiliary_model_name, auxiliary_model_type);
% Get the number of lags