Computes e (~2.71828) raised to the power for each component.
XMVECTOR XMVectorExpE(
XMVECTOR V
)
V
Type: XMVECTOR
Vector used for the exponents of base e.
Type: XMVECTOR
Returns a vector whose components are e raised to the power of the corresponding component of V.
The following pseudocode shows how this function is implemented.
XMVECTOR Result;
Result.x = expf(V.x);
Result.y = expf(V.y);
Result.z = expf(V.z);
Result.w = expf(V.w);
return Result;
Header: Declared in directxmath.h.