7 references to Cosh
Microsoft.ML.StandardTrainers (1)
Standard\LogisticRegression\LogisticRegression.cs (1)
351var variance = weight / (2 + 2 * Math.Cosh(score));
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)
866public static double Cosh(double x) => Math.Cosh(x);
System.Runtime.Numerics (3)
System\Numerics\Complex.cs (3)
382return new Complex(sin * Math.Cosh(value.m_imaginary), cos * Math.Sinh(value.m_imaginary)); 420return new Complex(cos * Math.Cosh(value.m_imaginary), -sin * Math.Sinh(value.m_imaginary)); 464double cosh = Math.Cosh(y2);