CsvComplexMatrixSerializerDeserialize(String) Method

Deserializes as ComplexMatrix the specified CSV file.

Definition

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

Parameters

path  String
The CSV file to be opened for deserializing.

Return Value

ComplexMatrix
The ComplexMatrix being deserialized.

Remarks

This method reads CSV files created by method Serialize(String, ComplexMatrix) 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