5 references to Log
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1601public static Half Log(Half x) => (Half)MathF.Log((float)x);
src\libraries\System.Private.CoreLib\src\System\MathF.cs (2)
241return Log(x) / Log(y);
src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
887public static float Log(float x) => MathF.Log(x); 893public static float LogP1(float x) => MathF.Log(x + 1);