Click or drag to resize

SymmetricMatrix Class

Represents a symmetric matrix.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.MatricesAnyMatrixDouble
    Meta.Numerics.MatricesAnyRectangularMatrix
      Meta.Numerics.MatricesAnySquareMatrix
        Meta.Numerics.MatricesSymmetricMatrix

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public sealed class SymmetricMatrix : AnySquareMatrix

The SymmetricMatrix type exposes the following members.

Constructors
  NameDescription
Public methodSymmetricMatrix
Initializes a new symmetric matrix.
Top
Properties
Methods
  NameDescription
Public methodCholeskyDecomposition
Computes the Cholesky decomposition of the matrix.
Public methodColumn
Gets a copy of the specified column.
(Inherited from AnyRectangularMatrix.)
Public methodCopy
Copies the matrix.
Public methodEigendecomposition
Computes the eigenvalues and eigenvectors of the matrix.
Public methodEigenvalues
Computes the eigenvalues of the matrix.
Public methodEquals(Object)
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT.)
Public methodEquals(AnyMatrixT)
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT.)
Public methodFill
Sets all matrix entries according to a supplied fill function.
(Overrides AnyMatrixTFill(FuncInt32, Int32, T).)
Public methodFrobeniusNorm
Computes the Frobenius-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodGetHashCode
Not a valid operation.
(Inherited from AnyMatrixT.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInfinityNorm
Computes the ∞-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodInverse
Computes the inverse of the matrix.
Public methodMaxNorm
Computes the max-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodMultiplySelfByTranspose
Computes the product of the matrix and its transpose.
(Inherited from AnyRectangularMatrix.)
Public methodMultiplyTransposeBySelf
Computes the product of the matrix's transpose and itself.
(Inherited from AnyRectangularMatrix.)
Public methodOneNorm
Computes the 1-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodRow
Gets a copy of the specified row.
(Inherited from AnyRectangularMatrix.)
Public methodToArray
Copies the matrix into an array.
(Inherited from AnyMatrixT.)
Public methodToSquareMatrix
Copies the matrix entries into an independent square matrix.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrace
Computes the trace of the matrix.
(Overrides AnySquareMatrixTrace.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Adds two symmetric matrices.
Public operatorStatic memberMultiply
Multiplies a symmetric matrix by a real factor.
Public operatorStatic memberSubtraction
Subtracts two symmetric matrices.
Public operatorStatic memberUnaryNegation
Negates a symmetric matrix.
Top
See Also