Click or drag to resize

NMathFunctionsOuterProduct(DoubleComplexVector, DoubleComplexVector, DoubleComplexMatrix) Method

Performs an outer product of the two vectors and puts the answer in the given matrix.

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

Parameters

v  DoubleComplexVector
A vector.
w  DoubleComplexVector
A vector.
M  DoubleComplexMatrix
A matrix.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if M isn't a matrix with v.Length rows and w.Length columns.
See Also