Click or drag to resize

CsvMatrixSerializer Class

Note: This API is now obsolete.

Serializes and deserializes matrix objects into and from CSV documents.
Inheritance Hierarchy
SystemObject
  Novacta.AnalyticsCsvMatrixSerializer

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
[ObsoleteAttribute("Use instead class CsvDoubleMatrixSerializer.")]
public static class CsvMatrixSerializer
Methods
  NameDescription
Public methodStatic memberDeserialize(String)
Deserializes as DoubleMatrix the specified CSV file.
Public methodStatic memberDeserialize(TextReader)
Deserializes as DoubleMatrix the CSV document contained by the specified TextReader.
Public methodStatic memberSerialize(String, DoubleMatrix)
Serializes the specified DoubleMatrix writing a CSV document to the specified file.
Public methodStatic memberSerialize(String, ReadOnlyDoubleMatrix)
Serializes the specified ReadOnlyDoubleMatrix writing a CSV document to the specified file.
Public methodStatic memberCode exampleSerialize(TextWriter, DoubleMatrix)
Serializes the specified DoubleMatrix writing a CSV document to a file using the specified TextWriter.
Public methodStatic memberCode exampleSerialize(TextWriter, ReadOnlyDoubleMatrix)
Serializes the specified ReadOnlyDoubleMatrix writing a CSV document to a file using the specified TextWriter.
Top
Remarks
Caution note Caution
This class has been deprecated and its use is not recommended. Please use instead class CsvDoubleMatrixSerializer.
See Also