Matrix<T>.DotMultiplyMultiply Operator

Definition

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

Overload List

DotMultiplyMultiply(Matrix<T>, T) Defines the element-wise exponentiation operator for matrices in F#.
DotMultiplyMultiply(Matrix<T>, Matrix<T>) Defines the element-wise exponentiation operator for matrices in F#.
DotMultiplyMultiply(Matrix<T>, Int32) Defines the element-wise exponentiation operator for matrices in F#.

DotMultiplyMultiply(Matrix<T>, T) Operator

Defines the element-wise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Matrix<T>
A matrix.
right  T
A number.

Return Value

Matrix<T>
A vector containing the products of corresponding elements in left and right.

DotMultiplyMultiply(Matrix<T>, Matrix<T>) Operator

Defines the element-wise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Matrix<T>
A matrix.
right  Matrix<T>
A matrix.

Return Value

Matrix<T>
A vector containing the products of corresponding elements in left and right.

DotMultiplyMultiply(Matrix<T>, Int32) Operator

Defines the element-wise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Matrix<T>
A matrix.
right  Int32
An integer.

Return Value

Matrix<T>
A vector containing the products of corresponding elements in left and right.

See Also