Divides a vector by another vector.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatVector Divide(
	FloatVector v,
	FloatVector w
)
Visual Basic (Declaration)
Public Shared Function Divide ( _
	v As FloatVector, _
	w As FloatVector _
) As FloatVector
Visual C++
public:
static FloatVector^ Divide(
	FloatVector^ v, 
	FloatVector^ w
)

Return Value

A vector containing the quotient.

Remarks

u[i] = v[i] / w[i]

See Also