Compute Hessenberg form of a matrix.
The Hessenberg decomposition is:
A = Q H Q^H
where Q is unitary/orthogonal and H has only zero elements below the first sub-diagonal.
Parameters : | a : ndarray
calc_q : bool, optional
overwrite_a : bool, optional
|
---|---|
Returns : | H : ndarray
Q : ndarray
|