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