CsvDoubleMatrixSerializerDeserialize(String) Method

Deserializes as DoubleMatrix the specified CSV file.

Definition

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

Parameters

path  String
The CSV file to be opened for deserializing.

Return Value

DoubleMatrix
The DoubleMatrix being deserialized.

Remarks

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

Exceptions

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

See Also