From 971a89fb73db41b2cb9d879ddda67f418804b2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 15 Apr 2022 14:33:02 +0200 Subject: [PATCH] Octave 7 now has ordqz (and ordeig was implemented in Octave 5) --- matlab/missing/mex/mjdgges/mjdgges.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matlab/missing/mex/mjdgges/mjdgges.m b/matlab/missing/mex/mjdgges/mjdgges.m index b7ddca207..e163e6cac 100644 --- a/matlab/missing/mex/mjdgges/mjdgges.m +++ b/matlab/missing/mex/mjdgges/mjdgges.m @@ -18,7 +18,7 @@ function [ss, tt, zz, sdim, eigval, info] = mjdgges(e, d, qz_criterium, zhreshol % SPECIAL REQUIREMENTS % none. -% Copyright © 1996-2020 Dynare Team +% Copyright © 1996-2022 Dynare Team % % This file is part of Dynare. % @@ -40,7 +40,7 @@ if nargin > 5 || nargin < 2 || nargout > 7 || nargout == 0 end if isoctave - error('Octave unsupported, since it does not have real qz, ordqz and ordeig') + error('Octave unsupported, since it does not have real qz') end [me, ne] = size(e); @@ -80,4 +80,4 @@ end %$ t(1) = 0; %$ end %$ T = all(t); -%@eof:1 \ No newline at end of file +%@eof:1