|  | Float | 
The FloatHermitianMatrix type exposes the following members.
 Methods
Methods| Name | Description | |
|---|---|---|
|   | Add(FloatComplex, FloatHermitianMatrix) | Adds a scalar and an Hermitian matrix. | 
|   | Add(FloatHermitianMatrix, FloatComplex) | Adds an Hermitian matrix and a scalar. | 
|   | Add(FloatHermitianMatrix, FloatHermitianMatrix) | Adds two Hermitian matrices. | 
|  | Clone | Creates a deep copy of this matrix. | 
|  | DeepenThisCopy | Guarantees that there is only one reference to the underlying data and that this data is in contiguous storage. | 
|   | Divide(FloatComplex, FloatHermitianMatrix) | Divide a scalar by an Hermitian matrix. | 
|   | Divide(FloatHermitianMatrix, FloatComplex) | Divide an Hermitian matrix by a scalar. | 
|   | Divide(FloatHermitianMatrix, FloatHermitianMatrix) | Divide an Hermitian matrix by another. | 
|  | Equals | Tests for equality of this matrix and another matrix.
            Two matrices are equal if they have the same dimensions
            and all values are equal. (Overrides ObjectEquals(Object)) | 
|  | GetHashCode | Returns an integer hash code for this matrix. (Overrides ObjectGetHashCode) | 
|  | LeadingSubmatrix | Returns the k by k upper left corner of the matrix. The matrix and the submatrix share the same data. | 
|  | MakeDiagonalReal | Sets the imaginary parts on the main diagonal to zero thereby meeting the strict definition of an Hermitian matrix. | 
|   | Multiply(FloatComplex, FloatHermitianMatrix) | Multiply a scalar and an Hermitian matrix. | 
|   | Multiply(FloatHermitianMatrix, FloatComplex) | Multiply an Hermitian matrix and a scalar. | 
|   | Multiply(FloatHermitianMatrix, FloatHermitianMatrix) | Multiply two lower Hermitian matrices. | 
|   | Negate | Negation operator. | 
|  | OnDeserialized | Checks that the matrix is square following deserialization | 
|  | Resize | Changes the order of this matrix to that specified, adding zeros or truncating as necessary. | 
|  | ShallowCopy | Creates a shallow copy of this matrix. | 
|   | Subtract(FloatComplex, FloatHermitianMatrix) | Subtracts an Hermitian matrix from a scalar. | 
|   | Subtract(FloatHermitianMatrix, FloatComplex) | Subtracts a scalar from an Hermitian matrix. | 
|   | Subtract(FloatHermitianMatrix, FloatHermitianMatrix) | Subtracts one Hermitian matrix from another. | 
|  | ToGeneralMatrix | Converts this Hermitian matrix to a general matrix. | 
|   | ToString | Returns a formatted string representation of this matrix. (Overrides ObjectToString) | 
|   | ToString(String) | Returns a formatted string representation of this matrix. Numbers are displayed using the specified format. | 
|   | ToTabDelimited | Returns a formatted string representation of this matrix using tabs and newlines. | 
|   | ToTabDelimited(String) | Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string. | 
|  | Transpose | Transposes the Hermitian matrix. | 
 See Also
See Also