Click or drag to resize

FloatComplexVectorAddition(FloatComplexVector, FloatComplexVector) Operator

Adds two vectors.

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

Parameters

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

Return Value

FloatComplexVector
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