Constructs a string using tabs and newlines to format the matrix.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public string ToTabDelimited(
	string formatString
)
Visual Basic (Declaration)
Public Function ToTabDelimited ( _
	formatString As String _
) As String
Visual C++
public:
String^ ToTabDelimited(
	String^ formatString
)

Parameters

formatString
Type: System..::.String
Format string for the matrix values.

Return Value

String representation of the connectivity matrix, including labels.

Return Value

String with tab and newline delimited data.

Remarks

The format string is passed to the System.Double.ToString(formatString) and is used to format the numeric values.

See Also