|  | DoubleTriDiagMatrix Operators and Type Conversions | 
The DoubleTriDiagMatrix type exposes the following members.
 Operators
Operators|  | Name | Description | 
|---|
|   | Addition(Double, DoubleTriDiagMatrix) | Adds a scalar to the non-zero elements of a tridiagonal matrix. | 
|   | Addition(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Adds two tridiagonal matrices. | 
|   | Addition(DoubleTriDiagMatrix, Double) | Adds a scalar to the non-zero elements of a tridiagonal matrix. | 
|   | Division(Double, DoubleTriDiagMatrix) | Divides a scalar by the non-zero elements of a tridiagonal matrix. | 
|   | Division(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Divides a tridiagonal matrix by another. | 
|   | Division(DoubleTriDiagMatrix, Double) | Divides the non-zero elements of a tridiagonal matrix by a scalar. | 
|   | Equality(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Tests for equality of two tridiagonal matrices. Two matrices are equal if they
            have the same dimensions, and all values are equal. | 
|   | (FloatTriDiagMatrix to DoubleTriDiagMatrix) | Implicitly converts a FloatTriDiagMatrix instance into a DoubleTriDiagMatrix
            instance. | 
|   | Inequality(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Tests for equality of two tridiagonal matrices. Two matrices are equal if they
            have the same dimensions, and all values are equal. | 
|   | Multiply(Double, DoubleTriDiagMatrix) | Multiplies the non-zero elements of a tridiagonal matrix by a scalar. | 
|   | Multiply(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Multiplies two tridiagonal matrices. | 
|   | Multiply(DoubleTriDiagMatrix, Double) | Multiplies the non-zero elements of a tridiagonal matrix and a scalar. | 
|   | Subtraction(Double, DoubleTriDiagMatrix) | Subtracts the non-zero elements of a tridiagonal matrix from a scalar. | 
|   | Subtraction(DoubleTriDiagMatrix, DoubleTriDiagMatrix) | Subtracts two tridiagonal matrices. | 
|   | Subtraction(DoubleTriDiagMatrix, Double) | Subtracts a scalar from the non-zero elements of a tridiagonal matrix. | 
|   | UnaryNegation(DoubleTriDiagMatrix) | Negation operator. | 
|   | UnaryPlus(DoubleTriDiagMatrix) | Unary + operator. Just returns the input matrix. | 
Top See Also
See Also