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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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