Double |
The DoubleSymmetricMatrix type exposes the following members.
Name | Description | |
---|---|---|
Add(Double, DoubleSymmetricMatrix) | Adds a scalar and a symmetric matrix. | |
Add(DoubleSymmetricMatrix, DoubleSymmetricMatrix) | Adds two symmetric matrices. | |
Add(DoubleSymmetricMatrix, Double) | Adds a symmetric matrix and a scalar. | |
Apply(FuncDoubleVector, Double) | 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. | |
Apply(FuncDouble, Double) | 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. | |
Apply(FuncDouble, Double, Double, DoubleSymmetricMatrix) | 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. | |
Apply(FuncDouble, Double, Double, Double) | 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. | |
Apply(FuncDouble, Int32, Double, 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. | |
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(Double, DoubleSymmetricMatrix) | Divide a scalar by a symmetric matrix. | |
Divide(DoubleSymmetricMatrix, DoubleSymmetricMatrix) | Divide a symmetric matrix by another. | |
Divide(DoubleSymmetricMatrix, Double) | Divide a symmetric matrix by a scalar. | |
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. | |
Multiply(Double, DoubleSymmetricMatrix) | Multiply a scalar and a symmetric matrix. | |
Multiply(DoubleSymmetricMatrix, DoubleSymmetricMatrix) | Multiply two lower symmetric matrices. | |
Multiply(DoubleSymmetricMatrix, Double) | Multiply a symmetric matrix and a scalar. | |
Negate | Negation operator. | |
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(Double, DoubleSymmetricMatrix) | Subtracts a symmetric matrix from a scalar. | |
Subtract(DoubleSymmetricMatrix, DoubleSymmetricMatrix) | Subtracts one symmetric matrix from another. | |
Subtract(DoubleSymmetricMatrix, Double) | Subtracts a scalar from a symmetric matrix. | |
ToCommaSeparated | Returns a formatted string representation of this matrix using commas and newlines. | |
ToCommaSeparated(String) | Returns a formatted string representation of this matrix using commas and newlines. Numbers are formatted using the specified format string. | |
ToGeneralMatrix | Converts this sparse 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. | |
Transform(FuncDouble, Double) | Modifies the elements of this matrix by applying the given unary function to each element. | |
Transform(FuncDouble, Double, Double, DoubleSymmetricMatrix) | 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. | |
Transform(FuncDouble, Double, Double, Double) | 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. | |
Transform(FuncDouble, Int32, Double, 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. | |
Transpose | Returns this matrix. |