Click or drag to resize

DoubleVectorDivide(DoubleVector, DoubleVector, DoubleVector) 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(
	DoubleVector u,
	DoubleVector v,
	DoubleVector w
)

Parameters

u  DoubleVector
A vector.
v  DoubleVector
A vector.
w  DoubleVector
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