CsvDoubleMatrixSerializer Class

Serializes and deserializes matrix objects into and from CSV documents.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static class CsvDoubleMatrixSerializer
Inheritance
Object    CsvDoubleMatrixSerializer

Methods

Deserialize(String) Deserializes as DoubleMatrix the specified CSV file.
Deserialize(TextReader) Deserializes as DoubleMatrix the CSV document contained by the specified TextReader.
Serialize(String, DoubleMatrix) Serializes the specified DoubleMatrix writing a CSV document to the specified file.
Serialize(String, ReadOnlyDoubleMatrix) Serializes the specified ReadOnlyDoubleMatrix writing a CSV document to the specified file.
Serialize(TextWriter, DoubleMatrix) Serializes the specified DoubleMatrix writing a CSV document to a file using the specified TextWriter.
Serialize(TextWriter, ReadOnlyDoubleMatrix) Serializes the specified ReadOnlyDoubleMatrix writing a CSV document to a file using the specified TextWriter.

See Also