MatrixTToMatrixStringArray(Int32, Int32, Int32, Int32, String, String, String, FuncT, String) Method |
Returns a string 2D array that summarizes the content of this matrix.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic string[,] ToMatrixStringArray(
int upperRows,
int lowerRows,
int leftColumns,
int rightColumns,
string horizontalEllipsis,
string verticalEllipsis,
string diagonalEllipsis,
Func<T, string> formatValue
)
Parameters
- upperRows Int32
- The number of rows to show from the top.
- lowerRows Int32
- The number of rows to show from the bottom.
- leftColumns Int32
- The number of columns to show from the left.
- rightColumns Int32
- The number of columns to show from the right.
- horizontalEllipsis String
- The string used for omitted columns.
- verticalEllipsis String
- The string used for omitted rows.
- diagonalEllipsis String
- The string used when both rows and columns are omitted.
- formatValue FuncT, String
- The delegate used to format values.
Return Value
StringThe formatted matrix values as a two-dimensional string array.
See Also