| MatrixMathSubmatrix(IROMatrixDouble, IMatrixDouble) Method | 
            Gets a submatrix out of the source matrix a. The dimensions of the submatrix are given by the provided matrix dest.
            The origin of the submatrix in the source matrix is (0,0), i.e. the left upper corner.
            
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
 Syntax
Syntaxpublic static void Submatrix(
	IROMatrix<double> src,
	IMatrix<double> dest
)
Parameters
- src  IROMatrixDouble
- The source matrix.
- dest  IMatrixDouble
- The destination matrix where to store the submatrix. It's dimensions are the dimensions of the submatrix.
 See Also
See Also