Click or drag to resize

NMathFunctionsOuterProduct(FloatComplexVector, FloatComplexVector) 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 FloatComplexMatrix OuterProduct(
	FloatComplexVector v,
	FloatComplexVector w
)

Parameters

v  FloatComplexVector
A vector.
w  FloatComplexVector
A vector.

Return Value

FloatComplexMatrix
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