XMVectorLogE 函式 (directxmath.h)
計算向量每個元件的基底 e 對數。基底 e 對數也稱為自然對數。
語法
XMVECTOR XM_CALLCONV XMVectorLogE(
[in] FXMVECTOR V
) noexcept;
參數
[in] V
要計算基底 e 對數的向量。
傳回值
傳回向量,其元件是 V對應元件的基底 e 對數。
備註
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 與 Windows SDK for Windows 8.1。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。XMVectorLogE 是 DirectXMath 3.05 版的新功能。
它類似于 Windows 8 的現有 XMVectorLog 函式,但會計算 e 基底,而不是基底 2。
XMVectorLogE 的實作方式如下:
XMVECTOR Result;
Result.x = logf(V.x);
Result.y = logf(V.y);
Result.z = logf(V.z);
Result.w = logf(V.w);
return Result;
需求
目標平台 | Windows |
標頭 | directxmath.h (包含 DirectXMath.h) |