LMatrix Methods |
The LMatrix type exposes the following members.
| Name | Description | |
|---|---|---|
| AMax | Gets the cell with the maximum absolute value. | |
| AMin | Gets the cell with the minimum absolute value. | |
| Clone | Creates an identical lower triangular matrix. | |
| Contains | Checks if the matrix contains the given value. | |
| Determinant | Gets the determinant of the matrix. | |
| Diagonal | Gets the main diagonal. | |
| Equals(LMatrix) | Checks if the provided argument is a matrix with the same values. | |
| Equals(Object) | Checks if the provided argument is a matrix with the same values. (Overrides ValueTypeEquals(Object)) | |
| GetHashCode | Returns the hashcode for this matrix. (Overrides ValueTypeGetHashCode) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| Identity | Creates an identity matrix given its size. | |
| Inverse | Calculates the inverse of the matrix. | |
| Maximum | Gets the cell with the maximum value. | |
| Minimum | Gets the cell with the minimum value. | |
| MultiplyAdd(DVector, DVector) | Transforms a vector and adds an offset. | |
| MultiplyAdd(DVector, DVector, Double) | Transforms a vector and adds an offset. | |
| MultiplySubtract(DVector, DVector) | Transforms a vector and subtracts an offset. | |
| MultiplySubtract(DVector, DVector, Double) | Transforms a vector and subtracts an offset. | |
| MultiplyTranspose | Multiplies this matrix by the transposed argument. | |
| Redim(Int32) | Creates a new matrix with different dimensions. | |
| Redim(Int32, Int32) | Creates a new matrix with different dimensions. | |
| Solve(DVector) | Solves the equation Ax = b for x. | |
| Solve(DVector, DVector) | Solves the equation Ax = b for x. | |
| Square | Multiplies this matrix by its own transposed. | |
| Stats | Gets statistics on the matrix cells. | |
| Sum | Calculates the sum of the matrix cells. | |
| ToString | Gets a textual representation of this matrix. (Overrides ValueTypeToString) | |
| ToString(String, IFormatProvider) | Gets a textual representation of this matrix. | |
| Trace | Calculates the trace of a matrix. | |
| Transpose | Transposes the matrix. |