EigenDecomposition Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public EigenDecomposition(
Matrix3By3 eigenvectors,
Matrix3By3 eigenValues
)
Public Sub New (
eigenvectors As Matrix3By3,
eigenValues As Matrix3By3
)
public:
EigenDecomposition(
Matrix3By3 eigenvectors,
Matrix3By3 eigenValues
)
new :
eigenvectors : Matrix3By3 *
eigenValues : Matrix3By3 -> EigenDecomposition
Parameters
- eigenvectors
- Type: AGI.Foundation.CoordinatesMatrix3By3
The 3-by-3 matrix where the columns of the matrix hold the eigenvectors. - eigenValues
- Type: AGI.Foundation.CoordinatesMatrix3By3
The 3-by-3 matrix where the diagonal elements of the matrix hold the eigenvalues.
See Also