.NET Matrix Library
Succeeded Property
See Also  Send Feedback



Indicates whether the Cholesky factorization succeeded and has reached completion.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Succeeded As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Cholesky
Dim value As Boolean
 
value = instance.Succeeded
C# 
public bool Succeeded {get;}
C++/CLI 
public:
property bool Succeeded {
   bool get();
}

Property Value

true if the factorization was successful; otherwise false.

Remarks

Check the Succeeded property before using the factorization for further computations.

Requirements

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

See Also

.NET Matrix Library