Click or drag to resize

VectorTOuterProduct(VectorT) Method

Computes the outer product M[i,j] = u[i]*v[j] of this and another vector.

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

Parameters

other  VectorT
The other vector

Return Value

MatrixT
A matrix containing the outer product of this vector and other.
See Also