Click or drag to resize

FloatVectorDivide(Single, FloatVector) Method

Divides a scalar by a vector.

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

Parameters

s  Single
A scalar.
v  FloatVector
A vector.

Return Value

FloatVector
A vector containing the quotient.
Remarks
u[i] = s / v[i]
See Also