Click or drag to resize

NMathFunctionsDelta(FloatComplexVector) Method

Calculates a vector containing the differences between successive elements in a given vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexVector Delta(
	FloatComplexVector v
)

Parameters

v  FloatComplexVector
A vector.

Return Value

FloatComplexVector
A vector containing the differences between successive elements in v.
Remarks
u[0] = v[0]
u[i] = v[i] - v[i-1]
See Also