6 references to Log
aspire (1)
Documentation\Docs\DocsIndexService.cs (1)
283idf[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)
1648public static Half Log(Half x) => (Half)MathF.Log((float)x);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (2)
239return Log(x) / Log(y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
900public static float Log(float x) => MathF.Log(x); 906public static float LogP1(float x) => MathF.Log(x + 1);