Note: This API is now obsolete.
Divides 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 ElementwiseDivideInPlace method instead.")]
public Matrix<T> ComponentwiseDivide(
Matrix<T> matrix
)
<ObsoleteAttribute("Use the ElementwiseDivideInPlace method instead.")>
Public Function ComponentwiseDivide (
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
[ObsoleteAttribute(L"Use the ElementwiseDivideInPlace method instead.")]
Matrix<T>^ ComponentwiseDivide(
Matrix<T>^ matrix
)
[<ObsoleteAttribute("Use the ElementwiseDivideInPlace method instead.")>]
member ComponentwiseDivide :
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