Click or drag to resize

FloatVectorAddition(FloatVector, FloatVector) Operator

Adds two vectors.

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

Parameters

v  FloatVector
The left-hand vector.
w  FloatVector
The right-hand vector.

Return Value

FloatVector
A new vector containing the sum.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two vectors are not the same length.
Remarks
u[i] = v[i] + w[i]
See Also