Breyta

Deila með


Tensor.Reciprocal Method

Definition

Overloads

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

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

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::TensorSpan<T> ^ Reciprocal(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % input, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Reciprocal<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> input, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Reciprocal : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Reciprocal(Of T As IFloatingPoint(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

Reciprocal<T>(Tensor<T>)

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

Type Parameters

T

Parameters

input
Tensor<T>

Returns

Applies to