Loading [MathJax]/jax/input/TeX/config.js
scipy 1.10.1 Pypi GitHub Homepage
Other Docs

NotesParametersReturns
qz(A, B, output='real', lwork=None, sort=None, overwrite_a=False, overwrite_b=False, check_finite=True)

The QZ, or generalized Schur, decomposition for a pair of n-by-n matrices (A,B) is

(A,B) = (Q @ AA @ Z*, Q @ BB @ Z*)

where AA, BB is in generalized Schur form if BB is upper-triangular with non-negative diagonal and AA is upper-triangular, or for real QZ decomposition (output='real') block upper triangular with 1x1 and 2x2 blocks. In this case, the 1x1 blocks correspond to real generalized eigenvalues and 2x2 blocks are 'standardized' by making the corresponding elements of BB have the form

[ a 0 ]
[ 0 b ]

and the pair of corresponding 2x2 blocks in AA and BB will have a complex conjugate pair of generalized eigenvalues. If (output='complex') or A and B are complex matrices, Z' denotes the conjugate-transpose of Z. Q and Z are unitary matrices.

Notes

Q is transposed versus the equivalent function in Matlab.

Parameters

A : (N, N) array_like

2-D array to decompose

B : (N, N) array_like

2-D array to decompose

output : {'real', 'complex'}, optional

Construct the real or complex QZ decomposition for real matrices. Default is 'real'.

lwork : int, optional

Work array size. If None or -1, it is automatically computed.

sort : {None, callable, 'lhp', 'rhp', 'iuc', 'ouc'}, optional

NOTE: THIS INPUT IS DISABLED FOR NOW. Use ordqz instead.

Specifies whether the upper eigenvalues should be sorted. A callable may be passed that, given a eigenvalue, returns a boolean denoting whether the eigenvalue should be sorted to the top-left (True). For real matrix pairs, the sort function takes three real arguments (alphar, alphai, beta). The eigenvalue x = (alphar + alphai*1j)/beta. For complex matrix pairs or output='complex', the sort function takes two complex arguments (alpha, beta). The eigenvalue x = (alpha/beta). Alternatively, string parameters may be used:

  • 'lhp' Left-hand plane (x.real < 0.0)
  • 'rhp' Right-hand plane (x.real > 0.0)
  • 'iuc' Inside the unit circle (x*x.conjugate() < 1.0)
  • 'ouc' Outside the unit circle (x*x.conjugate() > 1.0)

Defaults to None (no sorting).

overwrite_a : bool, optional

Whether to overwrite data in a (may improve performance)

overwrite_b : bool, optional

Whether to overwrite data in b (may improve performance)

check_finite : bool, optional

If true checks the elements of A and B are finite numbers. If false does no checking and passes matrix through to underlying algorithm.

Returns

AA : (N, N) ndarray

Generalized Schur form of A.

BB : (N, N) ndarray

Generalized Schur form of B.

Q : (N, N) ndarray

The left Schur vectors.

Z : (N, N) ndarray

The right Schur vectors.

QZ decomposition for generalized eigenvalues of a pair of matrices.

See Also

ordqz

Examples

import numpy as np
from scipy.linalg import qz
A = np.array([[1, 2, -1], [5, 5, 5], [2, 4, -8]])
B = np.array([[1, 1, -3], [3, 1, -1], [5, 6, -2]])
Compute the decomposition. The QZ decomposition is not unique, so depending on the underlying library that is used, there may be differences in the signs of coefficients in the following output.
AA, BB, Q, Z = qz(A, B)
AA
BB
Q
Z
Verify the QZ decomposition. With real output, we only need the transpose of ``Z`` in the following expressions.
Q @ AA @ Z.T  # Should be A
Q @ BB @ Z.T  # Should be B
Repeat the decomposition, but with ``output='complex'``.
AA, BB, Q, Z = qz(A, B, output='complex')
For conciseness in the output, we use ``np.set_printoptions()`` to set the output precision of NumPy arrays to 3 and display tiny values as 0.
np.set_printoptions(precision=3, suppress=True)
AA
BB
Q
Z
With complex arrays, we must use ``Z.conj().T`` in the following expressions to verify the decomposition.
Q @ AA @ Z.conj().T  # Should be A
Q @ BB @ Z.conj().T  # Should be B
See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

scipy.linalg._decomp_qz:ordqz_decomp_qz:ordqz

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/linalg/_decomp_qz.py#144
type: <class 'function'>
Commit: