13 references to Exp
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorOperation.cs (6)
1024
destination = T.
Exp
(x);
1840
destination = T.One / (T.One + T.
Exp
(-x));
1901
destination += T.
Exp
(x);
1908
destination += T.
Exp
(x[i]);
1919
destination = T.
Exp
(x) / y;
1926
destination[i] = T.
Exp
(x[i]) / y;
System\Numerics\Tensors\netcore\TensorPrimitives.Exp.cs (1)
40
public static T Invoke(T x) => T.
Exp
(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sigmoid.cs (1)
40
public static T Invoke(T x) => T.One / (T.One + T.
Exp
(-x));
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
631
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1290
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Numerics\IExponentialFunctions.cs (1)
20
static virtual TSelf ExpM1(TSelf x) => TSelf.
Exp
(x) - TSelf.One;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
958
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
626
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />