Click or drag to resize

VectorTToVectorStringArray Method

Formats the vector content into a two-dimensional string array.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public string[,] ToVectorStringArray(
	int maxPerColumn,
	int maxCharactersWidth,
	int padding,
	string ellipsis,
	Func<T, string> formatValue
)

Parameters

maxPerColumn  Int32
The maximum number of entries per column.
maxCharactersWidth  Int32
The maximum total character width.
padding  Int32
The padding between columns.
ellipsis  String
The placeholder used when values are omitted.
formatValue  FuncT, String
The value formatter.

Return Value

String
A two-dimensional string array representing the formatted vector.
See Also