Click or drag to resize

MatrixTToMatrixStringArray(Int32, Int32, 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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public string[,] ToMatrixStringArray(
	int upperRows,
	int lowerRows,
	int minLeftColumns,
	int rightColumns,
	int maxWidth,
	int padding,
	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.
minLeftColumns  Int32
The minimum number of columns to show from the left.
rightColumns  Int32
The number of columns to show from the right.
maxWidth  Int32
The maximum target width.
padding  Int32
The number of padding characters between columns.
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

String
The formatted matrix values as a two-dimensional string array.
See Also