Click or drag to resize

VectorTOuterProduct(VectorT, VectorT) Method

Computes the outer product M[i,j] = u[i] * v[j] of two vectors.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Matrix<T> OuterProduct(
	Vector<T> u,
	Vector<T> v
)

Parameters

u  VectorT
The left vector.
v  VectorT
The right vector.

Return Value

MatrixT
A matrix containing the outer product.
See Also