|
file_io
|
#include "file_io.h"#include <cassert>#include <fstream>#include <iostream>#include <stdexcept>#include <string>#include <vector>
Go to the source code of this file.
Functions | |
| void | fill_vector (istream &istr, vector< double > &v) |
| void | read_vector_from_file (const string &file_name, vector< double > &v) |
| void | write_vector_to_file (const string &file_name, const vector< double > &v) |
| void fill_vector | ( | istream & | istr, |
| vector< double > & | v | ||
| ) |
| void read_vector_from_file | ( | const string & | file_name, |
| vector< double > & | v | ||
| ) |
Definition at line 29 of file file_io.cpp.


| void write_vector_to_file | ( | const string & | file_name, |
| const vector< double > & | v | ||
| ) |