Click or drag to resize

DoubleComplexVectorMultiply(DoubleComplexVector, DoubleComplexVector) Method

Multiplies two vectors.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector Multiply(
	DoubleComplexVector v,
	DoubleComplexVector w
)

Parameters

v  DoubleComplexVector
A vector.
w  DoubleComplexVector
A vector.

Return Value

DoubleComplexVector
A vector containing the product.
Remarks
This method performs elementwise multiplication (u[i] = v[i] * w[i]). See NMathFunctions.Dot() to calculate the dot (inner) product of two vectors, and NMathFunctions.OuterProduct() for the outer product.
See Also