Click or drag to resize

NMathFunctionsOuterProduct(DoubleComplexVector, DoubleComplexVector) Method

Creates a matrix containing the outer product of two vectors.

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

Parameters

v  DoubleComplexVector
A vector.
w  DoubleComplexVector
A vector.

Return Value

DoubleComplexMatrix
A new matrix containing the outer product of v and w.
Remarks
Given two vectors v and w, the resulting matrix will have m rows and n columns where m is the length of v and n is the length of w.
See Also