| MatrixMathMultiplyFirstTransposed(IROMatrixDouble, IROMatrixDouble, IMatrixDouble) Method | 
            Multiplies matrix a_transposed with matrix b and stores the result in matrix c.
            
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
 Syntax
Syntaxpublic static void MultiplyFirstTransposed(
	IROMatrix<double> a,
	IROMatrix<double> b,
	IMatrix<double> c
)
Parameters
- a  IROMatrixDouble
- First multiplicant.
- b  IROMatrixDouble
- Second multiplicant.
- c  IMatrixDouble
- The matrix where to store the result. Has to be of dimension (a.Rows, b.Columns).
 See Also
See Also