Matrix<T>.ElementwisePowAsRightCore Method

Definition

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

Overload List

ElementwisePowAsRightCore(Matrix<T>, Matrix<T>) Raises two vectors element-wise.
ElementwisePowAsRightCore(Vector<T>, Dimension, Matrix<T>) Raises the elements of a vector, broadcast along the specified dimension to the power from the corresponding element in a matrix.

ElementwisePowAsRightCore(Matrix<T>, Matrix<T>)

Raises two vectors element-wise.
C#
protected virtual Matrix<T> ElementwisePowAsRightCore(
	Matrix<T> left,
	Matrix<T> result
)

Parameters

left  Matrix<T>
The left operand in the division.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>
A matrix whose elements are the quotient of the corresponding elements of this matrix and left.

Exceptions

DimensionMismatchException This matrix and left do not have the same length.

ElementwisePowAsRightCore(Vector<T>, Dimension, Matrix<T>)

Raises the elements of a vector, broadcast along the specified dimension to the power from the corresponding element in a matrix.
C#
protected virtual Matrix<T> ElementwisePowAsRightCore(
	Vector<T> left,
	Dimension broadcastDimension,
	Matrix<T> result
)

Parameters

left  Vector<T>
The left operand.
broadcastDimension  Dimension
A value that specifies whether the elements in left should be broadcast across rows or columns.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>
A matrix whose elements are the quotient of the corresponding elements of this matrix and left.

Exceptions

DimensionMismatchException This matrix and left do not have the same length.

See Also