Vector<T>.ElementwiseDivideInPlace Method

Divides this vector in-place element-wise by another vector.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Vector<T> ElementwiseDivideInPlace(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A vector.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullException

vector is null.

DimensionMismatchException

The length of vector does not equal the length of this instance.

See Also