Click or drag to resize

VectorTOuterProduct(VectorT, MatrixT) Method

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

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

Parameters

other  VectorT
The other vector
result  MatrixT
The matrix to store the result of the product.
See Also