UncLinAlgNonsymmetricEigT Method
Computes the Eigenvalues d and Eigenvectors of Nonsymmetric Matrix M
Namespace: Metas.UncLib.LinPropAssembly: Metas.UncLib.LinProp (in Metas.UncLib.LinProp.dll) Version: 2.8.9053.20196
public static Complex<T>[][] NonsymmetricEig<T>(
Complex<T>[][] m,
out Complex<T>[] d
)
where T : new(), Object, IRealNumber<T>
Public Shared Function NonsymmetricEig(Of T As {New, Object, IRealNumber(Of T)}) (
m As Complex(Of T)()(),
<OutAttribute> ByRef d As Complex(Of T)()
) As Complex(Of T)()()
public:
generic<typename T>
where T : gcnew(), Object, IRealNumber<T>
static array<array<Complex<T>>^>^ NonsymmetricEig(
array<array<Complex<T>>^>^ m,
[OutAttribute] array<Complex<T>>^% d
)
static member NonsymmetricEig :
m : Complex<'T>[][] *
d : Complex<'T>[] byref -> Complex<'T>[][] when 'T : new() and Object and IRealNumber<'T>
- m ComplexT
- Complex Matrix M
- d ComplexT
- Complex Vector d (Eigenvalues)
- T
- Real Number Type
ComplexTComplex Matrix (Eigenvectors)