Edit

Share via


TensorPrimitives.Pow Method

Definition

Overloads

Pow<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)
Pow<T>(ReadOnlySpan<T>, T, Span<T>)
Pow<T>(T, ReadOnlySpan<T>, Span<T>)

Pow<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

Source:
TensorPrimitives.Pow.cs
Source:
TensorPrimitives.Pow.cs
public:
generic <typename T>
 where T : System::Numerics::IPowerFunctions<T> static void Pow(ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination);
public static void Pow<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlySpan<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Shared Sub Pow(Of T As IPowerFunctions(Of T)) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T), destination As Span(Of T))

Type Parameters

T

Parameters

destination
Span<T>

Applies to

Pow<T>(ReadOnlySpan<T>, T, Span<T>)

Source:
TensorPrimitives.Pow.cs
Source:
TensorPrimitives.Pow.cs
public:
generic <typename T>
 where T : System::Numerics::IPowerFunctions<T> static void Pow(ReadOnlySpan<T> x, T y, Span<T> destination);
public static void Pow<T> (ReadOnlySpan<T> x, T y, Span<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlySpan<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> * 'T * Span<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Shared Sub Pow(Of T As IPowerFunctions(Of T)) (x As ReadOnlySpan(Of T), y As T, destination As Span(Of T))

Type Parameters

T

Parameters

y
T
destination
Span<T>

Applies to

Pow<T>(T, ReadOnlySpan<T>, Span<T>)

Source:
TensorPrimitives.Pow.cs
Source:
TensorPrimitives.Pow.cs
public:
generic <typename T>
 where T : System::Numerics::IPowerFunctions<T> static void Pow(T x, ReadOnlySpan<T> y, Span<T> destination);
public static void Pow<T> (T x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : 'T * ReadOnlySpan<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Shared Sub Pow(Of T As IPowerFunctions(Of T)) (x As T, y As ReadOnlySpan(Of T), destination As Span(Of T))

Type Parameters

T

Parameters

x
T
destination
Span<T>

Applies to