Vector<T>.DivideInPlace Method

Divides a vector in-place by a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> DivideInPlace(
	T factor
)

Parameters

factor  T
A number.

Return Value

Vector<T>
A vector whose elements are the corresponding elements of the vector divided by factor.

See Also