Click or drag to resize

FloatVectorAdd(FloatVector, Single) Method

Adds a vector and a scalar.

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

Parameters

v  FloatVector
A vector.
s  Single
A scalar.

Return Value

FloatVector
A new vector containing the sum.
Remarks
u[i] = v[i] + s
See Also