Calculates exponent of every element of input array: dst(I)=exp(src(I)) Maximum relative error is 7e-6. Currently, the function converts denormalized values to zeros on output

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvExp(
	IntPtr src,
	IntPtr dst
)
Public Shared Sub cvExp ( _
	src As IntPtr, _
	dst As IntPtr _
)
public:
static void cvExp(
	IntPtr src, 
	IntPtr dst
)

Parameters

src
IntPtr
The source array
dst
IntPtr
The destination array, it should have double type or the same type as the source

See Also