Click or drag to resize

CsvComplexMatrixSerializerDeserialize Method (String)

Deserializes as ComplexMatrix the specified CSV file.

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

Parameters

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

Return Value

Type: ComplexMatrix
The ComplexMatrix 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, ComplexMatrix) or one of its overloaded versions.

See Also