Click or drag to resize

CsvDoubleMatrixSerializerSerialize Method (String, ReadOnlyDoubleMatrix)

Serializes the specified ReadOnlyDoubleMatrix writing a CSV document to the specified file.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static void Serialize(
	string path,
	ReadOnlyDoubleMatrix matrix
)

Parameters

path
Type: SystemString
The CSV file to be opened for serializing.
matrix
Type: Novacta.AnalyticsReadOnlyDoubleMatrix
The ReadOnlyDoubleMatrix being serialized.
Exceptions
ExceptionCondition
ArgumentNullExceptionpath is null.
-or-
matrix is null.
InvalidOperationException An error occurred during serialization. The original exception is available using the InnerException property.
Remarks

This method writes a CSV document containing the information required to represent the state of matrix.

See Also