Επεξεργασία

Κοινή χρήση μέσω


TensorPrimitives.RootN<T> Method

Definition

Computes the element-wise n-th root of the values in the specified tensor.

public:
generic <typename T>
 where T : System::Numerics::IRootFunctions<T> static void RootN(ReadOnlySpan<T> x, int n, Span<T> destination);
public static void RootN<T> (ReadOnlySpan<T> x, int n, Span<T> destination) where T : System.Numerics.IRootFunctions<T>;
static member RootN : ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> * int * Span<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Shared Sub RootN(Of T As IRootFunctions(Of T)) (x As ReadOnlySpan(Of T), n As Integer, destination As Span(Of T))

Type Parameters

T

Parameters

x
ReadOnlySpan<T>

The tensor, represented as a span.

n
Int32

The degree of the root to be computed, represented as a scalar.

destination
Span<T>

The destination tensor, represented as a span.

Exceptions

x and destination reference overlapping memory locations and do not begin at the same location.

Remarks

This method effectively computes destination[i] = T.RootN(x[i], n).

Applies to