Click or drag to resize

FloatMatrixWriteAsCSV(TextWriter) Method

Writes a formatted text representation of this matrix using commas and newlines.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void WriteAsCSV(
	TextWriter writer
)

Parameters

writer  TextWriter
Writer where text is written.
Remarks
Cells are separated by commas, rows by newlines.
Example
C#
1,2,-3  
4,5.006,6  
7,8,9
See Also