Click or drag to resize

CsvMatrixSerializerDeserialize Method (TextReader)

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

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static DoubleMatrix Deserialize(
	TextReader reader
)

Parameters

reader
Type: System.IOTextReader
The TextReader that contains the CSV document to deserialize.

Return Value

Type: DoubleMatrix
The DoubleMatrix being deserialized.
Exceptions
ExceptionCondition
ArgumentNullExceptionreader is null.
InvalidOperationException An error occurred during deserialization. The original exception is available using the InnerException property.
Remarks

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

See Also