Inheritance diagram for TextFileWriter:

Definition at line 20 of file TextFileWriter.hpp.
Public Member Functions | |
| TextFileWriter (std::ostream *out) | |
| Construct new writer from output stream. | |
| TextFileWriter (const std::string file) | |
| Construct new writer from file. | |
| virtual | ~TextFileWriter () |
| Destructor. | |
| virtual void | write (const double value) |
| Write single value. | |
| virtual void | write (const indii::ml::aux::vector values) |
| Write vector of values. | |
| virtual void | write (const indii::ml::aux::matrix values) |
| Write matrix of values. | |
| virtual void | write (const indii::ml::aux::symmetric_matrix values) |
| Write symmetric matrix of values. | |
| virtual void | writeLine () |
| Write the end of the current line and begin a new line. | |
| TextFileWriter | ( | std::ostream * | out | ) |
Construct new writer from output stream.
| out | Stream to which to write. |
Definition at line 7 of file TextFileWriter.cpp.
| TextFileWriter | ( | const std::string | file | ) |
Construct new writer from file.
| file | Name of file to which to write. |
Definition at line 11 of file TextFileWriter.cpp.
| ~TextFileWriter | ( | ) | [virtual] |
| void write | ( | const double | value | ) | [virtual] |
Write single value.
| value | Value to write. |
Implements SeedWriter.
Definition at line 20 of file TextFileWriter.cpp.
| virtual void write | ( | const indii::ml::aux::vector | values | ) | [virtual] |
Write vector of values.
All values are written to the current line.
| values | Vector of values to write. |
Implements SeedWriter.
| virtual void write | ( | const indii::ml::aux::matrix | values | ) | [virtual] |
Write matrix of values.
All values are written to the current line in column-wise fashion.
| values | Matrix of values to write. |
Implements SeedWriter.
| virtual void write | ( | const indii::ml::aux::symmetric_matrix | values | ) | [virtual] |
Write symmetric matrix of values.
All values from the lower triangle of the matrix are written to the current line in column-wise fashion.
| values | Matrix of values to write. |
Implements SeedWriter.
| void writeLine | ( | ) | [virtual] |
Write the end of the current line and begin a new line.
Implements SeedWriter.
Definition at line 55 of file TextFileWriter.cpp.
1.5.2