ManagedArrayFunctions<T>.Pow Method
Pow<TStorage>(Int32, TStorage, Int32, TStorage) | |
Pow(Int32, ReadOnlySpanSlice<T>, T, SpanSlice<T>) |
Computes the element-wise power of a span.
|
Pow(Int32, ReadOnlySpanSlice<T>, Int32, SpanSlice<T>) |
Computes the element-wise power of a span.
|
Pow(Int32, ReadOnlySpan<T>, Int32, T, Span<T>, Int32) |
Computes the element-wise power of a span.
|
Pow(Int32, ReadOnlySpan<T>, Int32, Int32, Span<T>, Int32) |
Computes the element-wise power of a span.
|
Pow<TStorage>(Int32, TStorage, Int32, TStorage) |
Computes the element-wise power of an array.
|
Computes the element-wise power of a span.
public override void Pow(
int length,
ReadOnlySpan<T> operand,
int stride,
T exponent,
Span<T> result,
int resultStride
)
Public Overrides Sub Pow (
length As Integer,
operand As ReadOnlySpan(Of T),
stride As Integer,
exponent As T,
result As Span(Of T),
resultStride As Integer
)
public:
virtual void Pow(
int length,
ReadOnlySpan<T> operand,
int stride,
T exponent,
Span<T> result,
int resultStride
) override
abstract Pow :
length : int *
operand : ReadOnlySpan<'T> *
stride : int *
exponent : 'T *
result : Span<'T> *
resultStride : int -> unit
override Pow :
length : int *
operand : ReadOnlySpan<'T> *
stride : int *
exponent : 'T *
result : Span<'T> *
resultStride : int -> unit
Parameters
- length Int32
- The number of elements in the span.
- operand ReadOnlySpan<T>
-
- stride Int32
- The distance between elements in values.
- exponent T
- The exponent.
- result Span<T>
- The span that holds the results.
- resultStride Int32
- The distance between elements in result.
Computes the element-wise power of a span.
public override void Pow(
int length,
ReadOnlySpan<T> values,
int stride,
int exponent,
Span<T> result,
int resultStride
)
Public Overrides Sub Pow (
length As Integer,
values As ReadOnlySpan(Of T),
stride As Integer,
exponent As Integer,
result As Span(Of T),
resultStride As Integer
)
public:
virtual void Pow(
int length,
ReadOnlySpan<T> values,
int stride,
int exponent,
Span<T> result,
int resultStride
) override
abstract Pow :
length : int *
values : ReadOnlySpan<'T> *
stride : int *
exponent : int *
result : Span<'T> *
resultStride : int -> unit
override Pow :
length : int *
values : ReadOnlySpan<'T> *
stride : int *
exponent : int *
result : Span<'T> *
resultStride : int -> unit
Parameters
- length Int32
- The number of elements in the span.
- values ReadOnlySpan<T>
- The span that holds the operands.
- stride Int32
- The distance between elements in values.
- exponent Int32
- The exponent.
- result Span<T>
- The span that holds the results.
- resultStride Int32
- The distance between elements in result.