Click or drag to resize

CsvDoubleMatrixSerializerDeserialize Method (String)

Deserializes as DoubleMatrix the specified CSV file.

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

Parameters

path
Type: SystemString
The CSV file to be opened for deserializing.

Return Value

Type: DoubleMatrix
The DoubleMatrix being deserialized.
Exceptions
ExceptionCondition
ArgumentNullExceptionpath 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(String, DoubleMatrix) or one of its overloaded versions.

See Also