Matrix.EigSchure Method

Overload List

#SignatureDescription
1procedure EigSchure(D: TVec; VS: TMtx; T: TMtx; Select: TSelectTwoFunction; cSelect: TSelectOneFunctionC; SelectSingle: TSelectTwoFunctionSingle; cSelectSingle: TSelectOneFunctionSingleC);Computes eigenvalues and optionally Schure matrix
2procedure EigSchure(D: TVec; VS: TMtx; T: TMtx; rconde: TVec; rcondv: TVec; Select: TSelectTwoFunction; cSelect: TSelectOneFunctionC; SelectSingle: TSelectTwoFunctionSingle; cSelectSingle: TSelectOneFunctionSingleC);Computes eigenvalues and optionally Schure matrix

Overload 1: procedure EigSchure(D: TVec; VS: TMtx; T: TMtx; Select: TSelectTwoFunction; cSelect: TSelectOneFunctionC; SelectSingle: TSelectTwoFunctionSingle; cSelectSingle: TSelectOneFunctionSingleC);

Computes eigenvalues and optionally Schure matrix

#NameTypeDescription
1DTVecsource TVec
2VSTMtxsource TMtx
3TTMtxsource TMtx
4SelectTSelectTwoFunction
5cSelectTSelectOneFunctionC
6SelectSingleTSelectTwoFunctionSingle
7cSelectSingleTSelectOneFunctionSingleC

Result: stored in self (calling object)

Remarks:

Computes for an N-by-N nonsymmetric matrix A, the eigenvalues, the Schur form T, and, optionally, the matrix of Schur vectors VS. This gives the Schur factorization A = VS*T*(VS**H).

Optionally the routine also orders the eigenvalues on the diagonal of the Schur form so that selected eigenvalues are at the top left. The Select function parameters accepts a function with two parameters. First is the real and the second is the imaginary part of the eigenvalue. The function is to return true, if the specified eigenvalue is to be included in to sorting at the top left of the Schur form. If sorting is not required pass nil (NULL) for this parameter.

Overload 2: procedure EigSchure(D: TVec; VS: TMtx; T: TMtx; rconde: TVec; rcondv: TVec; Select: TSelectTwoFunction; cSelect: TSelectOneFunctionC; SelectSingle: TSelectTwoFunctionSingle; cSelectSingle: TSelectOneFunctionSingleC);

Computes eigenvalues and optionally Schure matrix

#NameTypeDescription
1DTVecsource TVec
2VSTMtxsource TMtx
3TTMtxsource TMtx
4rcondeTVecsource TVec
5rcondvTVecsource TVec
6SelectTSelectTwoFunction
7cSelectTSelectOneFunctionC
8SelectSingleTSelectTwoFunctionSingle
9cSelectSingleTSelectOneFunctionSingleC

Result: stored in self (calling object)

Remarks:

Computes for an N-by-N nonsymmetric matrix A, the eigenvalues, the Schur form T, and, optionally, the matrix of Schur vectors VS. This gives the Schur factorization A = VS*T*(VS**H).

Optionally, it also orders the eigenvalues on the diagonal of the Schur form so that selected eigenvalues are at the top left. If this is needed specify the Select function parameter and return true for each eigenvalue desired. Optionally computes a reciprocal condition number for the average of the selected eigenvalues (rconde[0]) and computes a reciprocal condition number for the right invariant subspace corresponding to the selected eigenvalues (rcondv[0]). The leading columns of VS form an orthonormal basis for this invariant subspace.