make x column

This commit is contained in:
emil28092005
2024-09-20 22:15:57 +03:00
parent 8e6024a01e
commit b073126348
4 changed files with 235 additions and 138 deletions
+13 -1
View File
@@ -1,6 +1,18 @@
#include <iostream>
#include "tools/matrix.h"
int main() {
std::cout << "Hello World!\n";
int n, m;
ColumnVector C(n);
Matrix A(n, m);
ColumnVector b(n);
double eps;
double eps_default;
std::cin >> C;
std::cin >> A;
std::cin >> b;
std::cin >> eps;
return 0;
}