6 references to Sinh
Microsoft.ML.Transforms (2)
Expression\BuiltinFunctions.cs (2)
245
FunctionProviderUtils.Fn<R8, R8>(Math.
Sinh
));
661
return (R4)Math.
Sinh
(a);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
871
public static double Sinh(double x) => Math.
Sinh
(x);
System.Runtime.Numerics (3)
System\Numerics\Complex.cs (3)
380
return new Complex(sin * Math.Cosh(value.m_imaginary), cos * Math.
Sinh
(value.m_imaginary));
418
return new Complex(cos * Math.Cosh(value.m_imaginary), -sin * Math.
Sinh
(value.m_imaginary));
466
return new Complex(sin / D, Math.
Sinh
(y2) / D);