Esempio n. 1
0
 /// <summary>
 /// Serializes the specified <see cref="DoubleMatrix"/> writing a CSV document
 /// to the specified file.
 /// </summary>
 /// <param name="path">The CSV file to be opened for
 /// serializing.</param>
 /// <param name="matrix">The <see cref="DoubleMatrix"/> being serialized.</param>
 /// <remarks>
 /// <para>
 /// This method writes a CSV document containing the information
 /// required to represent the state of <paramref name="matrix"/>.
 /// </para>
 /// </remarks>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="path"/> is <b>null</b>.<br/>
 /// -or- <br/>
 /// <paramref name="matrix"/> is <b>null</b>.
 /// </exception>
 /// <exception cref="InvalidOperationException">
 /// An error occurred during serialization. The original exception is available
 /// using the <see cref="Exception.InnerException"/> property.
 ///</exception>
 public static void Serialize(string path, DoubleMatrix matrix)
 {
     CsvDoubleMatrixSerializer.Serialize(path, matrix);
 }
Esempio n. 2
0
 /// <summary>
 /// Deserializes as <see cref="DoubleMatrix"/> the specified CSV file.
 /// </summary>
 /// <param name="path">The CSV file to be opened for
 /// deserializing.</param>
 /// <returns>The <see cref="DoubleMatrix"/> being deserialized.</returns>
 /// <remarks>
 /// <para>
 /// This method reads CSV files created by  method
 /// <see cref="Serialize(string, DoubleMatrix)"/> or
 /// one of its overloaded versions.
 /// </para>
 /// </remarks>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="path"/> is <b>null</b>.
 /// </exception>
 /// <exception cref="InvalidOperationException">
 /// An error occurred during deserialization. The original exception is available
 /// using the <see cref="Exception.InnerException"/> property.
 ///</exception>
 public static DoubleMatrix Deserialize(string path)
 {
     return(CsvDoubleMatrixSerializer.Deserialize(path));
 }
Esempio n. 3
0
 /// <summary>
 /// Serializes the specified <see cref="DoubleMatrix"/> writing a CSV document
 /// to a file using the specified <see cref="TextWriter"/>.
 /// </summary>
 /// <param name="writer">The <see cref="TextWriter"/> used to
 /// write the CSV document.</param>
 /// <param name="matrix">The <see cref="DoubleMatrix"/> being serialized.</param>
 /// <remarks>
 /// <para>
 /// This method writes a CSV document containing the information
 /// required to represent the state of <paramref name="matrix"/>.
 /// </para>
 /// </remarks>
 /// <example>
 /// <para>
 /// In the following example, a matrix instance is serialized by writing
 /// a CSV document to a stream. Hence the matrix is deserialized by reading
 /// such stream.
 /// </para>
 /// <para>
 /// <code title="Serialization and deserialization of a matrix using a CSV document"
 /// source="..\Novacta.Analytics.CodeExamples\CsvSerializeExample1.cs.txt"
 /// language="cs" />
 /// </para>
 /// </example>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="writer"/> is <b>null</b>.<br/>
 /// -or- <br/>
 /// <paramref name="matrix"/> is <b>null</b>.
 /// </exception>
 public static void Serialize(
     TextWriter writer,
     DoubleMatrix matrix)
 {
     CsvDoubleMatrixSerializer.Serialize(writer, matrix);
 }
Esempio n. 4
0
 /// <summary>
 /// Deserializes as <see cref="DoubleMatrix"/> the CSV document contained
 /// by the specified <see cref="TextReader"/>.
 /// </summary>
 /// <param name="reader">The <see cref="TextReader"/> that contains
 /// the CSV document to deserialize.</param>
 /// <returns>The <see cref="DoubleMatrix"/> being deserialized.</returns>
 /// <remarks>
 /// <para>
 /// This method reads CSV files created by method
 /// <see cref="Serialize(TextWriter, DoubleMatrix)"/> or
 /// one of its overloaded versions.
 /// </para>
 /// </remarks>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="reader"/> is <b>null</b>.
 /// </exception>
 /// <exception cref="InvalidOperationException">
 /// An error occurred during deserialization. The original exception is available
 /// using the <see cref="Exception.InnerException"/> property.
 ///</exception>
 public static DoubleMatrix Deserialize(TextReader reader)
 {
     return(CsvDoubleMatrixSerializer.Deserialize(reader));
 }