Vector.Outer Product<T> Method
Returns a matrix that is the outer product of two vectors.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
C#
A dense matrix that is the outer product of left and right.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
public static DenseMatrix<T> OuterProduct<T>(
Vector<T> left,
Vector<T> right
)
Parameters
Type Parameters
- T
Return Value
DenseMatrix<T>A dense matrix that is the outer product of left and right.
Exceptions
Argument | left is null. -or- right is null. |