15 references to Cosh
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorOperation.cs (1)
927destination = T.Cosh(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Cosh.cs (1)
78public static T Invoke(T x) => T.Cosh(x);
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
880/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1621/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1228/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
973/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
984/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
977/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1132/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
875/// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Cosh(TSelf)" />
System.Runtime.Numerics (5)
System\Numerics\Complex.Generic.cs (5)
464return new Complex<T>(sin * T.Cosh(value.m_imaginary), cos * T.Sinh(value.m_imaginary)); 496return new Complex<T>(T.Sinh(real) * cosInf, T.Cosh(real) * sinInf); 593return new Complex<T>(cos * T.Cosh(value.m_imaginary), -sin * T.Sinh(value.m_imaginary)); 626return new Complex<T>(T.Cosh(real) * cosInf, T.Sinh(real) * sinInf); 744T cosh = T.Cosh(y2);