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