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.2.1.1150 (2.2.1.1150)

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