Matrix<T>.ElementwisePowInPlace(Vector<T>, Dimension) Method

Raises this matrix in-place element-wise by a vector broadcast along the specified dimension.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Matrix<T> ElementwisePowInPlace(
	Vector<T> exponent,
	Dimension broadcastDimension
)

Parameters

exponent  Vector<T>
A matrix containing the exponents.
broadcastDimension  Dimension
A value that specifies whether the elements in exponent should be broadcast across rows or columns.

Return Value

Matrix<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