Multiplies the components of this instance by the corresponding
components of another matrix.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overridable Function ComponentwiseMultiply ( _ matrix As Matrix _ ) As Matrix |
| C# |
|---|
public virtual Matrix ComponentwiseMultiply ( Matrix matrix ) |
| C++ |
|---|
public: virtual Matrix^ ComponentwiseMultiply ( Matrix^ matrix ) |
Parameters
- matrix (Extreme.Mathematics.LinearAlgebra.Matrix)
- A Matrix.
Return Value
A reference to this instance.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | matrix is nullNothingnullptr. |
| DimensionMismatchException |
The number of rows of matrix does not equal the number of rows of this instance.
-or- The number of columns of matrix does not equal the number of columns of this instance. |