7 references to Cosh
Microsoft.ML.StandardTrainers (1)
Standard\LogisticRegression\LogisticRegression.cs (1)
351
var variance = weight / (2 + 2 * Math.
Cosh
(score));
Microsoft.ML.Transforms (2)
Expression\BuiltinFunctions.cs (2)
249
FunctionProviderUtils.Fn<R8, R8>(Math.
Cosh
));
667
return (R4)Math.
Cosh
(a);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
866
public static double Cosh(double x) => Math.
Cosh
(x);
System.Runtime.Numerics (3)
System\Numerics\Complex.cs (3)
382
return new Complex(sin * Math.
Cosh
(value.m_imaginary), cos * Math.Sinh(value.m_imaginary));
420
return new Complex(cos * Math.
Cosh
(value.m_imaginary), -sin * Math.Sinh(value.m_imaginary));
464
double cosh = Math.
Cosh
(y2);