Vector<T>.Elementwise Divide As Right Core Method
Divides two vectors element-wise.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A vector whose elements are the quotient of the corresponding elements of this vector and left.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
protected virtual Vector<T> ElementwiseDivideAsRightCore(
Vector<T> left,
Vector<T>? result
)
Parameters
- left Vector<T>
- The left operand in the division.
- result Vector<T>
- The vector that is to hold the result. May be null.
Return Value
Vector<T>A vector whose elements are the quotient of the corresponding elements of this vector and left.
Exceptions
Dimension | This vector and left do not have the same length. |