Matrix<T>.ElementwisePowInPlace(Matrix<Int32>) Method

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

Definition

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

Parameters

exponent  Matrix<Int32>
A matrix containing the exponents.

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