Click or drag to resize

NMathFunctionsLog(DoubleComplexVector, DoubleComplexVector) Method

Applies the natural logarithmic 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 DoubleComplexVector Log(
	DoubleComplexVector v,
	DoubleComplexVector u
)

Parameters

v  DoubleComplexVector
The input vector.
u  DoubleComplexVector
The output vector.

Return Value

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