Click or drag to resize

PolygonMathGetEigenVectorsFromSecondMoments Method

Gets the eigenvectors from the second moments.

Namespace: Altaxo.Geometry.Double_2D
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (VectorD2D EigenVector1, VectorD2D EigenVector2) GetEigenVectorsFromSecondMoments(
	double Ixx,
	double Iyy,
	double Ixy
)

Parameters

Ixx  Double
The second moment Ixx.
Iyy  Double
The second moment Iyy.
Ixy  Double
The second moment Ixy.

Return Value

ValueTupleVectorD2D, VectorD2D
The Eigenvectors corresponding to the provided second moments (Eigenvector for the largest EigenValue is first).
See Also