-
Notifications
You must be signed in to change notification settings - Fork 0
/
function_read_matrix.cpp
39 lines (34 loc) · 1.11 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
#include "function_read_matrix.h"
vector<vector<double>> open_test_read_slae(string str){
ifstream file(str);
if (!file.is_open()){
cout << "Файл не может быть открыт! Имя файла:"<< str << endl;
exit(EXIT_FAILURE);
}
//Считываем первую строку, т.к. нужные значения начинаются со второй
string line;
getline(file, line);
//Закончили считывание первой строки
vector<vector<double>> matrixV;
while (std::getline(file, line)){
if (line[0] == '\n' or line[0] == '\r'){
break;
}
istringstream iss(line);
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";
}
cout << std::endl;
}
cout << endl << endl;
return matrixV;
}