IArrayFunctions<T, TShape, TArray>.Pow Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Pow(TShape, TArray, T, TArray) Computes the element-wise power of an array.
Pow(TShape, TArray, Int32, TArray) Computes the element-wise power of an array.

Pow(TShape, TArray, T, TArray)

Computes the element-wise power of an array.
C#
void Pow(
	TShape shape,
	TArray value,
	T exponent,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
value  TArray
The array that holds the operands.
exponent  T
The exponent.
result  TArray
The array that holds the results.

Pow(TShape, TArray, Int32, TArray)

Computes the element-wise power of an array.
C#
void Pow(
	TShape shape,
	TArray values,
	int exponent,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
values  TArray
The array that holds the operands.
exponent  Int32
The exponent.
result  TArray
The array that holds the results.

See Also