Skip to content
Snippets Groups Projects
Select Git revision
  • 2aad980fd01cede482d088e65e26f60c464516d9
  • master default protected
  • precond
  • 6.x
  • madysson
  • 5.x
  • asm
  • time-varying-information-set
  • 4.6
  • dynare_minreal
  • dragonfly
  • various_fixes
  • 4.5
  • clang+openmp
  • exo_steady_state
  • declare_vars_in_model_block
  • julia
  • error_msg_undeclared_model_vars
  • static_aux_vars
  • slice
  • aux_func
  • 6.3
  • 6.2
  • 6.1
  • 6.0
  • 6-beta2
  • 6-beta1
  • 5.5
  • 5.4
  • 5.3
  • 5.2
  • 5.1
  • 5.0
  • 5.0-rc1
  • 4.7-beta3
  • 4.7-beta2
  • 4.7-beta1
  • 4.6.4
  • 4.6.3
  • 4.6.2
  • 4.6.1
41 results

PI_qzdiv.m

Blame
  • Forked from Dynare / dynare
    323 commits behind the upstream repository.
    PI_qzdiv.m 1.59 KiB
    function [A,B,Q,Z] = PI_qzdiv(stake,A,B,Q,Z)
    %function [A,B,Q,Z] = PI_qzdiv(stake,A,B,Q,Z)
    %
    % Takes U.T. matrices A, B, orthonormal matrices Q,Z, rearranges them
    % so that all cases of abs(B(i,i)/A(i,i))>stake are in lower right
    % corner, while preserving U.T. and orthonormal properties and Q'AZ' and
    % Q'BZ'.
    
    % Original file downloaded from:
    % http://sims.princeton.edu/yftp/gensys/mfiles/qzdiv.m
    
    % Copyright © 1993-2007 Christopher Sims
    % Copyright © 2008-2024 Dynare Team
    %
    % This file is part of Dynare.
    %
    % Dynare is free software: you can redistribute it and/or modify
    % it under the terms of the GNU General Public License as published by
    % the Free Software Foundation, either version 3 of the License, or
    % (at your option) any later version.
    %
    % Dynare is distributed in the hope that it will be useful,
    % but WITHOUT ANY WARRANTY; without even the implied warranty of
    % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    % GNU General Public License for more details.
    %
    % You should have received a copy of the GNU General Public License
    % along with Dynare.  If not, see <https://www.gnu.org/licenses/>.
    
    [n, ~] = size(A);
    root = abs([diag(A) diag(B)]);
    root(:,1) = root(:,1)-(root(:,1)<1.e-13).*(root(:,1)+root(:,2));
    root(:,2) = root(:,2)./root(:,1);
    for i = n:-1:1
        m=0;
        for j=i:-1:1
            if (root(j,2) > stake || root(j,2) < -.1)
                m=j;
                break
            end
        end
        if (m==0)
            return
        end
        for k=m:1:i-1
            [A, B, Q, Z] = PI_qzswitch(k,A,B,Q,Z);
            tmp = root(k,2);
            root(k,2) = root(k+1,2);
            root(k+1,2) = tmp;
        end
    end