Click or drag to resize

NMathFunctionsDelta(DoubleVector) Method

Returns a vector containing differences between successive elements in the vector.

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

Parameters

v  DoubleVector
A vector.

Return Value

DoubleVector
A vector of deltas.
Remarks
u[0] = v[0]
u[i] = v[i] - v[i-1]
See Also