CsvComplexMatrixSerializer 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 CsvComplexMatrixSerializer
Inheritance
Object    CsvComplexMatrixSerializer

Methods

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

See Also