Edit

Share via


Tensor.Exp2M1 Method

Definition

Overloads

Exp2M1<T>(Tensor<T>)
Exp2M1<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

Exp2M1<T>(Tensor<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IExponentialFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Exp2M1(System::Numerics::Tensors::Tensor<T> ^ input);
public static System.Numerics.Tensors.Tensor<T> Exp2M1<T> (System.Numerics.Tensors.Tensor<T> input) where T : System.Numerics.IExponentialFunctions<T>;
static member Exp2M1 : System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> (requires 'T :> System.Numerics.IExponentialFunctions<'T>)
Public Function Exp2M1(Of T As IExponentialFunctions(Of T)) (input As Tensor(Of T)) As Tensor(Of T)

Type Parameters

T

Parameters

input
Tensor<T>

Returns

Applies to

Exp2M1<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IExponentialFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Exp2M1(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % input, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Exp2M1<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> input, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IExponentialFunctions<T>;
static member Exp2M1 : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IExponentialFunctions<'T>)
Public Function Exp2M1(Of T As IExponentialFunctions(Of T)) (ByRef input As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

Type Parameters

T

Parameters

destination
TensorSpan<T>

Returns

Applies to