| Dense | 
The DenseMatrix type exposes the following members.
 Operators
Operators| Name | Description | |
|---|---|---|
|   | Addition(DenseMatrix, DenseMatrix) | Adds two matrices together and returns the results. | 
|   | Modulus(DenseMatrix, Complex) | Multiplies a Matrix by a constant and returns the result. | 
|   | Multiply(Complex, DenseMatrix) | Multiplies a Matrix by a constant and returns the result. | 
|   | Multiply(DenseMatrix, DenseMatrix) | Multiplies two matrices. | 
|   | Multiply(DenseMatrix, DenseVector) | Multiplies a Matrix and a Vector. | 
|   | Multiply(DenseMatrix, Complex) | Multiplies a Matrix by a constant and returns the result. | 
|   | Multiply(DenseVector, DenseMatrix) | Multiplies a Vector and a Matrix. | 
|   | Subtraction(DenseMatrix, DenseMatrix) | Subtracts two matrices together and returns the results. | 
|   | UnaryNegation(DenseMatrix) | Negates each element of the matrix. | 
|   | UnaryPlus(DenseMatrix) | Returns a Matrix containing the same values of rightSide. | 
 See Also
See Also