dune-composites (unstable)

readData.hh
1#include<vector>
2#include <string>
3#include <sstream>
4
5#ifndef READDATA_HH
6#define READDATA_HH
7
8using namespace std;
9
10namespace Dune{
11 namespace Composites{
12
13 FieldMatrix<double,1000,346> readData(string filename){
14
15 string data;
16 ifstream infile(filename);
17 if(! infile) {
18 std::cout << "Could not open file " + filename << std::endl;
19 }
20 //std::cout << "\n READING FROM FILE - " << filename << "\n" << std::endl;
21 FieldMatrix<double,1000,346> samples;
22 int count = 0;
23 while(getline(infile, data)){
24 std::istringstream iss(data);
25 //samples[count].resize(346);
26
27 for (int i = 0; i < 346; i++){
28 double val;
29 iss >> val;
30 samples[count][i] = val;
31 }
32 count++;
33 }
34 infile.close();
35 return samples;
36 }
37
38 }
39}
40
41#endif
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)