Click or drag to resize

FloatComplexVectorSubtract(FloatComplexVector, FloatComplexVector, FloatComplexVector) Method

Subtracts a vector from a second vector and puts the result into a third vector.

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

Parameters

u  FloatComplexVector
A vector.
v  FloatComplexVector
A vector.
w  FloatComplexVector
A vector to hold the result.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the three vectors are not all of the same length.
Remarks
w[i] = u[i] - v[i]
See Also