21 references to Exp
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorOperation.cs (6)
1060
destination = T.
Exp
(x);
1937
destination = T.One / (T.One + T.
Exp
(-x));
1998
destination += T.
Exp
(x);
2005
destination += T.
Exp
(x[i]);
2016
destination = T.
Exp
(x) / y;
2023
destination[i] = T.
Exp
(x[i]) / y;
System\Numerics\Tensors\netcore\TensorPrimitives.Exp.cs (1)
47
public static T Invoke(T x) => T.
Exp
(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sigmoid.cs (1)
45
public 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)
20
static virtual TSelf ExpM1(TSelf x) => TSelf.
Exp
(x) - TSelf.One;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1313
T 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)
1798
T 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)
996
T expReal = T.
Exp
(real);
1116
T t = T.Pow(rho, powerReal) * T.
Exp
(-powerImaginary * theta);