power

Matrix power operation. The tensor will be raised to the power of the exponent tensor.

Return

The expression of the power operation.

Parameters

exponent

the tensor containing the exponent value. The tensor must be a matrix of shape 1x1, i.e., containing exactly one value.

Throws

If the exponent tensor does not contain exactly one value, or this tensor is not a matrix.


Matrix power operation. The tensor will be raised to the power of the matrix evaluated from the exponent expression element-by-element.

Return

The expression of the power operation.

Parameters

exponent

the matrix evaluated from the tensor arithmetic expression containing the exponent value, which must evaluated to a 1x1 matrix, i.e., containing exactly one value.

Throws

If the exponent expression does not evaluate to exactly one value, or this tensor is not a matrix.


Matrix power operation. The matrix evaluated from the tensor expression will be raised to the power of the exponent tensor element-by-element.

Return

The expression of the power operation.

Parameters

exponent

the tensor containing the exponent value. The tensor must be a matrix of shape 1x1, i.e., containing exactly one value.

Throws

If the exponent tensor does not contain exactly one value.


Matrix power operation. The matrix evaluated from the tensor expression will be raised to the power of the matrix evaluated from the exponent expression element-by-element.

Return

The expression of the power operation.

Parameters

exponent

the matrix evaluated from the tensor arithmetic expression containing the exponent value. The expression must be evaluated to a tensor of shape 1x1, i.e., containing exactly one value.

Throws

If the exponent expression does not evaluate to exactly one value.


Scalar power operation. A scalar value will be raised to the power of the exponent tensor.

Return

The expression of the power operation.

Parameters

exponent

the tensor containing the exponent value.

Throws

If the exponent tensor does not contain exactly one value, or the exponent tensor is not a matrix.


Scalar power operation. A scalar value will be raised to the power of the matrix evaluated from the exponent expression.

Return

The expression of the power operation.

Parameters

exponent

the matrix evaluated from the tensor arithmetic expression containing the exponent value. The expression must be evaluated to a matrix of shape 1x1, i.e., containing of exactly one value.

Throws

If the exponent expression does not evaluate to exactly one value.


Scalar power operation. The matrix evaluated from the tensor expression will be raised to the power of a scalar value element-by-element.

Return

The expression of the power operation.

Parameters

other

the scalar exponent value.


Scalar power operation. The tensor will be raised to the power of a scalar value element-by-element.

Return

The expression of the power operation.

Parameters

other

the scalar exponent value.

Throws

If this tensor is not a matrix.