CsvMatrixSerializerDeserialize(TextReader) Method

Deserializes as DoubleMatrix the CSV document contained by the specified TextReader.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix Deserialize(
	TextReader reader
)

Parameters

reader  TextReader
The TextReader that contains the CSV document to deserialize.

Return Value

DoubleMatrix
The DoubleMatrix being deserialized.

Remarks

This method reads CSV files created by method Serialize(TextWriter, DoubleMatrix) or one of its overloaded versions.

Exceptions

ArgumentNullExceptionreader is null.
InvalidOperationException An error occurred during deserialization. The original exception is available using the InnerException property.

See Also