21 references to Exp
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorOperation.cs (6)
1060destination = T.Exp(x); 1937destination = T.One / (T.One + T.Exp(-x)); 1998destination += T.Exp(x); 2005destination += T.Exp(x[i]); 2016destination = T.Exp(x) / y; 2023destination[i] = T.Exp(x[i]) / y;
System\Numerics\Tensors\netcore\TensorPrimitives.Exp.cs (1)
47public static T Invoke(T x) => T.Exp(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sigmoid.cs (1)
45public static T Invoke(T x) => T.One / (T.One + T.Exp(-x));
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
629/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1322/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
951/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
979/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
990/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
983/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\IExponentialFunctions.cs (1)
20static virtual TSelf ExpM1(TSelf x) => TSelf.Exp(x) - TSelf.One;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1313T value = T.Exp(vector.GetElementUnsafe(index));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
957/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
1798T value = T.Exp(vector.GetElementUnsafe(index));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
622/// <inheritdoc cref="IExponentialFunctions{TSelf}.Exp" />
System.Runtime.Numerics (2)
System\Numerics\Complex.Generic.cs (2)
996T expReal = T.Exp(real); 1116T t = T.Pow(rho, powerReal) * T.Exp(-powerImaginary * theta);