Click or drag to resize

NMathFunctionsOuterProduct(DoubleVector, DoubleVector, DoubleMatrix) 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(
	DoubleVector v,
	DoubleVector w,
	DoubleMatrix M
)

Parameters

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