UncLinAlgNonLinearEigT Method
Non-Linear Eigenvalue Problem A[0]*v + lambda*A[1]*v + lambda^2*A[2]*v + ... + lambda^(n-1)*A[n-1]*v = 0
Namespace: Metas.UncLib.LinPropAssembly: Metas.UncLib.LinProp (in Metas.UncLib.LinProp.dll) Version: 2.8.9053.20196
public static T[][] NonLinearEig<T>(
T[][][] a,
out T[] d
)
where T : new(), Object, INumber<T>
Public Shared Function NonLinearEig(Of T As {New, Object, INumber(Of T)}) (
a As T()()(),
<OutAttribute> ByRef d As T()
) As T()()
public:
generic<typename T>
where T : gcnew(), Object, INumber<T>
static array<array<T>^>^ NonLinearEig(
array<array<array<T>^>^>^ a,
[OutAttribute] array<T>^% d
)
static member NonLinearEig :
a : 'T[][][] *
d : 'T[] byref -> 'T[][] when 'T : new() and Object and INumber<'T>
- a T
- Array of Matrices A
- d T
- Vector d (Eigenvalues)
- T
- Number Type
TMatrix (Eigenvectors)