Matrix<T>.ElementwisePowAsLeftCore Method

Definition

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

Overload List

ElementwisePowAsLeftCore(Matrix<T>, Matrix<T>) Raises the elements of a matrix to a power from the corresponding elements in another matrix.
ElementwisePowAsLeftCore(Matrix<Int32>, Matrix<T>) Raises the elements of a matrix to a power from the corresponding elements in another matrix.
ElementwisePowAsLeftCore(Vector<T>, Dimension, Matrix<T>) Raises the elements of a matrix to a power from the corresponding elements in another matrix.

ElementwisePowAsLeftCore(Matrix<T>, Matrix<T>)

Raises the elements of a matrix to a power from the corresponding elements in another matrix.
C#
protected virtual Matrix<T> ElementwisePowAsLeftCore(
	Matrix<T> right,
	Matrix<T> result
)

Parameters

right  Matrix<T>
The matrix that contains the exponents.
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 right.

Exceptions

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

ElementwisePowAsLeftCore(Matrix<Int32>, Matrix<T>)

Raises the elements of a matrix to a power from the corresponding elements in another matrix.
C#
protected virtual Matrix<T> ElementwisePowAsLeftCore(
	Matrix<int> right,
	Matrix<T> result
)

Parameters

right  Matrix<Int32>
The matrix that contains the exponents.
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 right.

Exceptions

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

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

Raises the elements of a matrix to a power from the corresponding elements in another matrix.
C#
protected virtual Matrix<T> ElementwisePowAsLeftCore(
	Vector<T> right,
	Dimension broadcastDimension,
	Matrix<T> result
)

Parameters

right  Vector<T>
The matrix that contains the exponents.
broadcastDimension  Dimension
A value that specifies whether the elements in right 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 right.

Exceptions

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

See Also