Click or drag to resize

FloatVectorDivide(FloatVector, FloatVector, FloatVector) Method

Divides one vector by another vector and puts the result into a third vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void Divide(
	FloatVector u,
	FloatVector v,
	FloatVector w
)

Parameters

u  FloatVector
A vector.
v  FloatVector
A vector.
w  FloatVector
A vector to hold the result.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the three vectors are not all of the same length.
Remarks
w[i] = u[i] / v[i]
See Also