Vector<T>.ElementwisePowInPlace Method

Definition

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

Overload List

ElementwisePowInPlace(Int32) Raises the elements of a vector in-place to a constant power.
ElementwisePowInPlace(T) Raises the elements of a vector in-place to a constant power.
ElementwisePowInPlace(Vector<T>) Raises this vector in-place element-wise by another vector.
ElementwisePowInPlace(Vector<Int32>) Raises this vector in-place element-wise by another vector.

Vector<T>.ElementwisePowInPlace(Int32)

Raises the elements of a vector in-place to a constant power.
C#
public Vector<T> ElementwisePowInPlace(
	int exponent
)

Parameters

exponent  Int32
A number.

Return Value

Vector<T>
A vector whose elements are the corresponding elements of the vector raised to the power exponent.

Vector<T>.ElementwisePowInPlace(T)

Raises the elements of a vector in-place to a constant power.
C#
public Vector<T> ElementwisePowInPlace(
	T exponent
)

Parameters

exponent  T
A number.

Return Value

Vector<T>
A vector whose elements are the corresponding elements of the vector raised to the power exponent.

Vector<T>.ElementwisePowInPlace(Vector<T>)

Raises this vector in-place element-wise by another vector.
C#
public virtual Vector<T> ElementwisePowInPlace(
	Vector<T> exponent
)

Parameters

exponent  Vector<T>
A vector containing the exponents.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionexponent is null.
DimensionMismatchException The size of exponent does not equal the size of this instance.

Vector<T>.ElementwisePowInPlace(Vector<Int32>)

Raises this vector in-place element-wise by another vector.
C#
public virtual Vector<T> ElementwisePowInPlace(
	Vector<int> exponent
)

Parameters

exponent  Vector<Int32>
A vector containing the exponents.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionexponent is null.
DimensionMismatchException The size of exponent does not equal the size of this instance.

See Also