naginterfaces.library.lapackeig.dormhr¶
- naginterfaces.library.lapackeig.dormhr(side, trans, ilo, ihi, a, tau, c)[source]¶
dormhr
multiplies an arbitrary real matrix by the real orthogonal matrix which was determined bydgehrd()
when reducing a real general matrix to Hessenberg form.For full information please refer to the NAG Library document for f08ng
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f08/f08ngf.html
- Parameters
- sidestr, length 1
Indicates how or is to be applied to .
or is applied to from the left.
or is applied to from the right.
- transstr, length 1
Indicates whether or is to be applied to .
is applied to .
is applied to .
- iloint
These must be the same arguments and , respectively, as supplied to
dgehrd()
.- ihiint
These must be the same arguments and , respectively, as supplied to
dgehrd()
.- afloat, array-like, shape
Note: the required extent for this argument in dimension 1 is determined as follows: if : ; if : ; otherwise: .
Note: the required extent for this argument in dimension 2 is determined as follows: if : ; if : ; otherwise: .
Details of the vectors which define the elementary reflectors, as returned by
dgehrd()
.- taufloat, array-like, shape
Note: the required length for this argument is determined as follows: if : ; if : ; otherwise: .
Further details of the elementary reflectors, as returned by
dgehrd()
.- cfloat, array-like, shape
The matrix .
- Returns
- cfloat, ndarray, shape
is overwritten by or or or as specified by and .
- Raises
- NagValueError
- (errno )
On entry, error in parameter .
Constraint: or .
- (errno )
On entry, error in parameter .
Constraint: or .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
- (errno )
On entry, error in parameter .
- Notes
dormhr
is intended to be used following a call todgehrd()
, which reduces a real general matrix to upper Hessenberg form by an orthogonal similarity transformation: .dgehrd()
represents the matrix as a product of elementary reflectors. Here and are values determined bydgebal()
when balancing the matrix; if the matrix has not been balanced, and .This function may be used to form one of the matrix products
overwriting the result on (which may be any real rectangular matrix).
A common application of this function is to transform a matrix of eigenvectors of to the matrix of eigenvectors of .
- References
Golub, G H and Van Loan, C F, 1996, Matrix Computations, (3rd Edition), Johns Hopkins University Press, Baltimore