Click or drag to resize

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

Parameters

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