Click or drag to resize

NMathFunctionsExp(FloatComplexVector, FloatComplexVector) Method

Applies the exponential function to each element of the input vector and places the result in the given output vector.

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

Parameters

v  FloatComplexVector
The input vector.
u  FloatComplexVector
The output vector.

Return Value

FloatComplexVector
The output vector u for convenience.
Remarks
u[i] = exp(v[i])
See Also