.NET Matrix Library
Eigenvalue Property
See Also  Send Feedback



index
A zero-based index specifying the eigenvalue to return.
Gets the specified eigenvalue.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Eigenvalue( _
   ByVal index As Integer _
) As Double
Visual Basic (Usage)Copy Code
Dim instance As CSymEigen
Dim index As Integer
Dim value As Double
 
value = instance.Eigenvalue(index)
C# 
public double Eigenvalue( 
   int index
) {get;}
C++/CLI 
public:
property double Eigenvalue {
   double get(intindex);
}

Parameters

index
A zero-based index specifying the eigenvalue to return.

Property Value

A double representing the specified eigenvalue.

Exceptions

ExceptionDescription
IndexOutOfBoundsExceptionThe specified index is less than zero or greater than n-1 where n is the value returned by the Size property of this class.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library