GlassBR
Loading...
Searching...
No Matches
ReadTable.hpp
Go to the documentation of this file.
1
6
7#ifndef ReadTable_h
8#define ReadTable_h
9
10#include <string>
11#include <vector>
12
13using std::ifstream;
14using std::ofstream;
15using std::string;
16using std::vector;
17
24void read_table(string filename, vector<double> &z_vector, vector<vector<double>> &x_matrix, vector<vector<double>> &y_matrix);
25
26#endif
void read_table(string filename, vector< double > &z_vector, vector< vector< double > > &x_matrix, vector< vector< double > > &y_matrix)
Reads glass ASTM data from a file with the given file name.