CsvMatrixSerializer Class

Note: This API is now obsolete.
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#
[ObsoleteAttribute("Use instead class CsvDoubleMatrixSerializer.")]
public static class CsvMatrixSerializer
Inheritance
Object    CsvMatrixSerializer

Remarks

  Caution

This class has been deprecated and its use is not recommended. Please use instead class 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