共用方式為


XMVectorExpE 函式 (directxmath.h)

計算 e (~2.71828) 為每個元件提升至電源。

語法

XMVECTOR XM_CALLCONV XMVectorExpE(
  [in] FXMVECTOR V
) noexcept;

參數

[in] V

用於基底 e 指數的向量。

傳回值

傳回向量,其元件會引發為 V對應元件的乘冪。

備註

平臺需求

支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。

XMVectorExpE 是 DirectXMath 3.05 版的新功能。

它類似于 Windows 8 的現有 XMVectorExp 函式,但計算基底 e 而不是基底 2。

XMVectorExpE 的 實作方式如下:


XMVECTOR Result;

Result.x = expf(V.x);
Result.y = expf(V.y);
Result.z = expf(V.z);
Result.w = expf(V.w);

return Result;

需求

   
目標平台 Windows
標頭 directxmath.h (包含 DirectXMath.h)

另請參閱

超量向量函式

XMVectorExp2

XMVectorExp10

XMVectorLogE