public sealed class SymmetricMatrix : AnySquareMatrix
Public NotInheritable Class SymmetricMatrix
Inherits AnySquareMatrix
public ref class SymmetricMatrix sealed : public AnySquareMatrix
[<SealedAttribute>]
type SymmetricMatrix =
class
inherit AnySquareMatrix
end
SymmetricMatrix | Initializes a new symmetric matrix. |
ColumnCount |
Gets the number of matrix columns.
(Inherited from AnySquareMatrix) |
Dimension |
Gets the dimension of the matrix.
(Overrides AnySquareMatrixDimension) |
IsReadOnly |
Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrixT) |
Item |
Gets or sets an element of the matrix.
(Overrides AnyMatrixTItemInt32, Int32) |
RowCount |
Gets the number of matrix rows.
(Inherited from AnySquareMatrix) |
CholeskyDecomposition | Computes the Cholesky decomposition of the matrix. |
Column |
Gets the specified column.
(Inherited from AnyRectangularMatrix) |
Copy | Copies the matrix. |
Eigendecomposition | Computes the eigenvalues and eigenvectors of the matrix. |
Eigenvalues | Computes the eigenvalues of the matrix. |
Equals(AnyMatrixT) |
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT) |
Equals(Object) |
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT) |
Fill |
Sets all matrix entries according to a supplied fill function.
(Overrides AnyMatrixTFill(FuncInt32, Int32, T)) |
FrobeniusNorm |
Computes the Frobenius-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
GetHashCode |
Not a valid operation.
(Inherited from AnyMatrixT) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
InfinityNorm |
Computes the ∞-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
Inverse | Computes the inverse of the matrix. |
MaxNorm |
Computes the max-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
MultiplySelfByTranspose |
Computes the product of the matrix and its transpose.
(Inherited from AnyRectangularMatrix) |
MultiplyTransposeBySelf |
Computes the product of the matrix's transpose and itself.
(Inherited from AnyRectangularMatrix) |
OneNorm |
Computes the 1-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
Row |
Gets a copy of the specified row.
(Inherited from AnyRectangularMatrix) |
ToArray |
Copies the matrix into an array.
(Inherited from AnyMatrixT) |
ToSquareMatrix | Copies the matrix entries into an independent square matrix. |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Trace |
Computes the trace of the matrix.
(Overrides AnySquareMatrixTrace) |
Addition(SymmetricMatrix, SymmetricMatrix) | Adds two symmetric matrices. |
Division(SymmetricMatrix, Double) | Divides a symmetric matrix by a real factor. |
Multiply(Double, SymmetricMatrix) | Multiplies a symmetric matrix by a real factor. |
Subtraction(SymmetricMatrix, SymmetricMatrix) | Subtracts two symmetric matrices. |
UnaryNegation(SymmetricMatrix) | Negates a symmetric matrix. |