VectorTOuterProduct(VectorT, VectorT) Method |
Computes the outer product M[i,j] = u[i] * v[j] of two vectors.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static Matrix<T> OuterProduct(
Vector<T> u,
Vector<T> v
)
Parameters
- u VectorT
- The left vector.
- v VectorT
- The right vector.
Return Value
MatrixTA matrix containing the outer product.
See Also