-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction_read_matrix.cpp
45 lines (36 loc) · 1.22 KB
/
function_read_matrix.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "function_read_matrix.h"
using namespace std;
std::vector<std::vector<double>> open_test_read_slae(std::string str);
std::vector<std::vector<double>> open_test_read_slae(std::string str){
ifstream file(str);
if (!file.is_open()){
cout << "Файл не может быть открыт! Имя файла:"<< str << endl;
exit(EXIT_FAILURE);
}
//Считываем первую строку, т.к. нужные значения начинаются со второй
std::string line;
getline(file, line);
//Закончили считывание первой строки
std::vector<std::vector<double>> matrixV;
while (std::getline(file, line)){
if (line[0] == '\n' or line[0] == '\r'){
break;
}
// cout<< line<< endl;
std::istringstream iss(line);
std::vector<double> data;
double num;
while(iss >> num){
data.push_back(num);
}
matrixV.push_back(data);
}
for (const auto &v : matrixV){
for (const auto &n: v){
std::cout << left << setw(15)<< n << "\t";
}
std::cout << std::endl;
}
cout << endl << endl;
return matrixV;
}