5 references to Log
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1595
public static Half Log(Half x) => (Half)MathF.
Log
((float)x);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (2)
239
return
Log
(x) /
Log
(y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
900
public static float Log(float x) => MathF.
Log
(x);
906
public static float LogP1(float x) => MathF.
Log
(x + 1);