.NET Matrix Library
Hermitian Property
See Also  Send Feedback



Indicates whether this instance represents a hermitian sparse matrix.

Syntax

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

Property Value

true if the matrix is hermitian; false otherwise.

Requirements

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

See Also

.NET Matrix Library