Click or drag to resize

FloatSymmetricMatrix Class

Class FloatSymmetricMatrix represents a symmetric matrix of float-precision floating point values.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreFloatSymmetricMatrix

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class FloatSymmetricMatrix : ICloneable

The FloatSymmetricMatrix type exposes the following members.

Constructors
 NameDescription
Public methodFloatSymmetricMatrix(FloatMatrix) Constructs a square FloatSymmetricMatrix instance by extracting the upper triangular part of a square general matrix.
Public methodFloatSymmetricMatrix(FloatVector) Constructs a FloatSymmetricMatrix instance using the data in the given vector.
Public methodFloatSymmetricMatrix(Int32) Constructs a FloatSymmetricMatrix instance with the specified size.
Public methodFloatSymmetricMatrix(FloatVector, Int32) Constructs a FloatSymmetricMatrix instance with the specified size, and using the data in the given vector.
Top
Properties
 NameDescription
Public propertyCols Gets the number of columns in the matrix.
Public propertyDataVector Gets the data vector referenced by this matrix.
Public propertyItem Gets and sets the value at the specified position. Symmetry is maintained.
Public propertyOrder Gets the order of the matrix.
Public propertyRows Gets the number of rows in the matrix.
Top
Methods
 NameDescription
Public methodStatic memberAdd(FloatSymmetricMatrix, FloatSymmetricMatrix) Adds two symmetric matrices.
Public methodStatic memberAdd(FloatSymmetricMatrix, Single) Adds a symmetric matrix and a scalar.
Public methodStatic memberAdd(Single, FloatSymmetricMatrix) Adds a scalar and a symmetric matrix.
Public methodApply(FuncFloatVector, Single) Returns a new vector containing an element for each column or row in this matrix. The elements are the results of applying a function that takes a vector and returns a single-precision number.
Public methodApply(FuncSingle, Single) Returns a new matrix with the same size as this matrix, whose values are the result of applying the given unary function to each element of this matrix.
Public methodApply(FuncSingle, Int32, Single, Int32) Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the passed integer value.
Public methodApply(FuncSingle, Single, Single, FloatSymmetricMatrix) Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the corresponding element of the passed matrix.
Public methodApply(FuncSingle, Single, Single, Single) Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the passed float-precision value.
Public methodClone Creates a deep copy of this matrix.
Public methodDeepenThisCopy Guarantees that there is only one reference to the underlying data and that this data is in contiguous storage.
Public methodStatic memberDivide(FloatSymmetricMatrix, FloatSymmetricMatrix) Divide a symmetric matrix by another.
Public methodStatic memberDivide(FloatSymmetricMatrix, Single) Divide a symmetric matrix by a scalar.
Public methodStatic memberDivide(Single, FloatSymmetricMatrix) Divide a scalar by a symmetric matrix.
Public methodEquals 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))
Public methodGetHashCode Returns an integer hash code for this matrix.
(Overrides ObjectGetHashCode)
Public methodLeadingSubmatrix Returns the k by k upper left corner of the matrix. The matrix and the submatrix share the same data.
Public methodStatic memberMultiply(FloatSymmetricMatrix, FloatSymmetricMatrix) Multiply two lower symmetric matrices.
Public methodStatic memberMultiply(FloatSymmetricMatrix, Single) Multiply a symmetric matrix and a scalar.
Public methodStatic memberMultiply(Single, FloatSymmetricMatrix) Multiply a scalar and a symmetric matrix.
Public methodStatic memberNegate Negation operator.
Public methodOnDeserialized Checks that the matrix is square following deserialization
Public methodResize Changes the order of this matrix to that specified, adding zeros or truncating as necessary.
Public methodShallowCopy Creates a shallow copy of this matrix.
Public methodStatic memberSubtract(FloatSymmetricMatrix, FloatSymmetricMatrix) Subtracts one symmetric matrix from another.
Public methodStatic memberSubtract(FloatSymmetricMatrix, Single) Subtracts a scalar from a symmetric matrix.
Public methodStatic memberSubtract(Single, FloatSymmetricMatrix) Subtracts a symmetric matrix from a scalar.
Public methodCode exampleToCommaSeparated Returns a formatted string representation of this matrix using commas and newlines.
Public methodCode exampleToCommaSeparated(String) Returns a formatted string representation of this matrix using commas and newlines. Numbers are formatted using the specified format string.
Public methodToGeneralMatrix Converts this sparse matrix to a general matrix.
Public methodCode exampleToString Returns a formatted string representation of this matrix.

ToCommaSeparated

ToCommaSeparated(String)

ToTabDelimited

ToTabDelimited(String)


(Overrides ObjectToString)
Public methodCode exampleToString(String) Returns a formatted string representation of this matrix. Numbers are displayed using the specified format.

ToCommaSeparated

ToCommaSeparated(String)

ToTabDelimited

ToTabDelimited(String)

Public methodCode exampleToTabDelimited Returns a formatted string representation of this matrix using tabs and newlines.
Public methodCode exampleToTabDelimited(String) Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string.
Public methodTransform(FuncSingle, Single) Modifies the elements of this matrix by applying the given unary function to each element.
Public methodTransform(FuncSingle, Int32, Single, Int32) Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the passed integer value.
Public methodTransform(FuncSingle, Single, Single, FloatSymmetricMatrix) Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the corresponding element of the passed matrix.
Public methodTransform(FuncSingle, Single, Single, Single) Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the passed float-precision value.
Public methodTranspose Returns this matrix.
Top
Operators
 NameDescription
Public operatorStatic memberAddition(FloatSymmetricMatrix, FloatSymmetricMatrix) Adds two symmetric matrices.
Public operatorStatic memberAddition(FloatSymmetricMatrix, Single) Adds a symmetric matrix and a scalar.
Public operatorStatic memberAddition(Single, FloatSymmetricMatrix) Adds a scalar and a symmetric matrix.
Public operatorStatic memberDecrement(FloatSymmetricMatrix) Decrements each element of the given matrix.
Public operatorStatic memberDivision(FloatSymmetricMatrix, FloatSymmetricMatrix) Divide a symmetric matrix by another.
Public operatorStatic memberDivision(FloatSymmetricMatrix, Single) Divide a symmetric matrix by a scalar.
Public operatorStatic memberDivision(Single, FloatSymmetricMatrix) Divide a scalar by a symmetric matrix.
Public operatorStatic memberEquality(FloatSymmetricMatrix, FloatSymmetricMatrix) Tests for equality of two symmetric matrices. Two matrices are equal if they have the same order and all values are equal.
Public operatorStatic memberIncrement(FloatSymmetricMatrix) Increments each element of the given matrix.
Public operatorStatic memberInequality(FloatSymmetricMatrix, FloatSymmetricMatrix) Tests for inequality of two symmetric matrices. Two matrices are equal if they have the same order and all values are equal.
Public operatorStatic memberMultiply(FloatSymmetricMatrix, FloatSymmetricMatrix) Multiply two lower symmetric matrices. Multiply two lower symmetric matrices.
Public operatorStatic memberMultiply(FloatSymmetricMatrix, Single) Multiply a symmetric matrix and a scalar.
Public operatorStatic memberMultiply(Single, FloatSymmetricMatrix) Multiply a scalar and a symmetric matrix.
Public operatorStatic memberSubtraction(FloatSymmetricMatrix, FloatSymmetricMatrix) Subtracts one symmetric matrix from another.
Public operatorStatic memberSubtraction(FloatSymmetricMatrix, Single) Subtracts a scalar from a symmetric matrix.
Public operatorStatic memberSubtraction(Single, FloatSymmetricMatrix) Subtracts a symmetric matrix from a scalar.
Public operatorStatic memberUnaryNegation(FloatSymmetricMatrix) Negation operator.
Public operatorStatic memberUnaryPlus(FloatSymmetricMatrix) Unary + operator. Just returns the input matrix.
Top
Remarks
A symmetric matrix is equal to its transpose. In other words, A[i,j] = A[j,i] for all elements i,j in matrix A.
The matrix is stored in a vector column by column. For efficiency, only the upper triangle is stored. For example, the following 5 by 5 symmetric matrix:
C#
    | a00 a01 a02 a03 a04 |
    | a10 a11 a12 a13 a14 |
A = | a20 a21 a22 a23 a24 |
    | a30 a31 a32 a33 a34 |
    | a40 a41 a42 a43 a44 |
is stored in a data vector v as:
C#
v = [a00 a01 a11 a02 a12 a22 a03 a13 a23 a33 a04 a14 a24 a34 a44 ]
In general, A[i,j] = v[j(j+1)/2+i], i<=j v[i(i+1)/2+j], j<i
See Also