2 references to Tanh
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1582public static Half Tanh(Half x) => (Half)MathF.Tanh((float)x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
872public static float Tanh(float x) => MathF.Tanh(x);