UncLinAlgLinearEigT Method
Linear Eigenvalue Problem A0*v + lambda*A1*v = 0
Namespace: Metas.UncLib.LinPropAssembly: Metas.UncLib.LinProp (in Metas.UncLib.LinProp.dll) Version: 2.8.9053.20196
public static T[][] LinearEig<T>(
T[][] a0,
T[][] a1,
out T[] d
)
where T : new(), Object, INumber<T>
Public Shared Function LinearEig(Of T As {New, Object, INumber(Of T)}) (
a0 As T()(),
a1 As T()(),
<OutAttribute> ByRef d As T()
) As T()()
public:
generic<typename T>
where T : gcnew(), Object, INumber<T>
static array<array<T>^>^ LinearEig(
array<array<T>^>^ a0,
array<array<T>^>^ a1,
[OutAttribute] array<T>^% d
)
static member LinearEig :
a0 : 'T[][] *
a1 : 'T[][] *
d : 'T[] byref -> 'T[][] when 'T : new() and Object and INumber<'T>
- a0 T
- Matrix A0
- a1 T
- Matrix A1
- d T
- Vector d (Eigenvalues)
- T
- Number Type
TMatrix (Eigenvectors)