DenseVector<T, TStorage>.ElementwiseDivideAsRightCore Method

Divides two vectors element-wise.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
protected override 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

DimensionMismatchException

This vector and left do not have the same length.

See Also