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

Raises this vector in-place element-wise by another vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.

See Also