Applys 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: 5.1.0.0

Syntax

C#
public static FloatComplexVector Log(
	FloatComplexVector v,
	FloatComplexVector u
)
Visual Basic (Declaration)
Public Shared Function Log ( _
	v As FloatComplexVector, _
	u As FloatComplexVector _
) As FloatComplexVector
Visual C++
public:
static FloatComplexVector^ Log(
	FloatComplexVector^ v, 
	FloatComplexVector^ u
)

Return Value

The output vector u for convenience.

Remarks

u[i] = exp(v[i])

See Also