6 references to Log
aspire (1)
Documentation\Docs\DocsIndexService.cs (1)
283
idf[token] = MathF.
Log
(1.0f + (documentCount - count + 0.5f) / (count + 0.5f));
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1648
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);