Click or drag to resize

VectorTToVectorString(Int32, Int32, String, String, String, FuncT, String) Method

Returns a string that represents the content of this vector, column by column.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public string ToVectorString(
	int maxPerColumn,
	int maxCharactersWidth,
	string ellipsis,
	string columnSeparator,
	string rowSeparator,
	Func<T, string> formatValue
)

Parameters

maxPerColumn  Int32
Maximum number of entries and thus lines per column. Typical value: 12; Minimum: 3.
maxCharactersWidth  Int32
Maximum number of characters per line over all columns. Typical value: 80; Minimum: 16.
ellipsis  String
Character to use to print if there is not enough space to print all entries. Typical value: "..".
columnSeparator  String
Character to use to separate two columns on a line. Typical value: " " (2 spaces).
rowSeparator  String
Character to use to separate two rows/lines. Typical value: Environment.NewLine.
formatValue  FuncT, String
Function to provide a string for any given entry value.

Return Value

String

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Vector`1.ToVectorString(System.Int32,System.Int32,System.String,System.String,System.String,System.Func{`0,System.String})"]

See Also