Multiplies the elements of a vector by the corresponding
elements of another vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> ElementwiseConjugateMultiply<T>(
Vector<T> left,
Vector<T> right
)
Public Shared Function ElementwiseConjugateMultiply(Of T) (
left As Vector(Of T),
right As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ ElementwiseConjugateMultiply(
Vector<T>^ left,
Vector<T>^ right
)
static member ElementwiseConjugateMultiply :
left : Vector<'T> *
right : Vector<'T> -> Vector<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The first vector. - right
- Type: Extreme.MathematicsVectorT
The second vector.
Type Parameters
- T
Return Value
Type:
VectorTA new vector whose elements are equal to the
products of the elements of
left and
right .
Reference