Matrix3By3SymmetricDiagonalMatrix Method (Double, Double, Double) |
Forms a diagonal matrix from the input elements.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Matrix3By3Symmetric DiagonalMatrix(
double m11,
double m22,
double m33
)
Public Shared Function DiagonalMatrix (
m11 As Double,
m22 As Double,
m33 As Double
) As Matrix3By3Symmetric
public:
static Matrix3By3Symmetric DiagonalMatrix(
double m11,
double m22,
double m33
)
static member DiagonalMatrix :
m11 : float *
m22 : float *
m33 : float -> Matrix3By3Symmetric
Parameters
- m11
- Type: SystemDouble
1,1 - m22
- Type: SystemDouble
2,2 - m33
- Type: SystemDouble
3,3
Return Value
Type:
Matrix3By3SymmetricThe diagonal matrix.
See Also