共用方式為


XMVectorExp2 函式 (directxmath.h)

計算每個元件的乘冪的兩個。

語法

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

參數

[in] V

用於基底二之指數的向量。

傳回值

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

備註

平臺需求

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

XMVectorExp2 是 DirectXMath 3.05 版的新功能,但它只是 Windows 8 現有 XMVectorExp 函式的重新命名版本。

XMVectorExp2 的實作方式如下:


XMVECTOR Result;

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

return Result;

需求

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

另請參閱

超量向量函式

XMVectorExpE

XMVectorExp10

XMVectorLog2