MatrixMathToROSubMatrixT Method |
Wraps a submatrix part, so that this part can be used as a matrix in operations (read-only).
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static IROMatrix<T> ToROSubMatrix<T>(
IROMatrix<T> matrix,
int rowOffset,
int columnOffset,
int rows,
int columns
)
where T : struct, new()
Parameters
- matrix IROMatrixT
- The matrix from which a submatrix part should be wrapped.
- rowOffset Int32
- Starting row of the submatrix.
- columnOffset Int32
- Starting column of the submatrix.
- rows Int32
- Number of rows of the submatrix.
- columns Int32
- Number of columns of the submatrix.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.ToROSubMatrix``1(Altaxo.Calc.LinearAlgebra.IROMatrix{``0},System.Int32,System.Int32,System.Int32,System.Int32)"]
Return Value
IROMatrixTA read-only wrapper matrix that represents the submatrix part of the matrix.
See Also