Tests if the matrix is symmetric and positive definite.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public bool IsSymmetricPositiveDefinite { get; } |
Visual Basic (Declaration) |
---|
Public ReadOnly Property IsSymmetricPositiveDefinite As Boolean |
Visual C++ |
---|
public: property bool IsSymmetricPositiveDefinite { bool get (); } |
Field Value
True if the matrix is symmetric and positive definite, false otherwise.
Remarks
A symmetric matrix A is positive definite if Transpose(x)*A*x > 0
for an arbitrary vector x not equal the zero vector.