Note: This API is now obsolete.
Multiplies the elements of this instance by the corresponding
elements of another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the ElementwiseMultiplyInPlace method instead.")]
public Matrix<T> ComponentwiseMultiply(
Matrix<T> matrix
)
<ObsoleteAttribute("Use the ElementwiseMultiplyInPlace method instead.")>
Public Function ComponentwiseMultiply (
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
[ObsoleteAttribute(L"Use the ElementwiseMultiplyInPlace method instead.")]
Matrix<T>^ ComponentwiseMultiply(
Matrix<T>^ matrix
)
[<ObsoleteAttribute("Use the ElementwiseMultiplyInPlace method instead.")>]
member ComponentwiseMultiply :
matrix : Matrix<'T> -> Matrix<'T>
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Return Value
Type:
MatrixTA reference to this instance.
Exception | Condition |
---|
ArgumentNullException | matrix is .
|
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. |
Reference