Vector<T>.DotMultiplyMultiply Operator

Definition

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

Overload List

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

Vector<T>.DotMultiplyMultiply(Vector<T>, T)

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

Parameters

left  Vector<T>
A vector.
right  T
A number.

Return Value

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

Vector<T>.DotMultiplyMultiply(Vector<T>, Vector<T>)

Defines the componentwise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Vector<T>
A vector.
right  Vector<T>
A vector.

Return Value

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

Vector<T>.DotMultiplyMultiply(Vector<T>, Vector<Int32>)

Defines the componentwise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Vector<T>
A vector.
right  Vector<Int32>
An integer vector.

Return Value

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

Vector<T>.DotMultiplyMultiply(Vector<T>, Int32)

Defines the componentwise exponentiation operator for matrices in F#.
C#
C# does not support this operator.

Parameters

left  Vector<T>
A vector.
right  Int32
An integer.

Return Value

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

See Also