共用方式為


XMVectorLog2 函式 (directxmath.h)

計算向量每個元件的基底兩個對數。

語法

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

參數

[in] V

要計算基底兩對數的向量。

傳回值

傳回向量,其元件是 V對應元件的兩個對數。

備註

平臺需求

Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8.1。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。

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

XMVectorLog2 的實作方式如下:


XMVECTOR Result;

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

return Result;

需求

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

另請參閱

超量向量函式

XMVectorLogE

XMVectorLog10

XMVectorExp2