Skip to content

repair missing vector includes #3

New issue

Have a question about this project? Sign up for a free account to open an issue and contact its maintainers and the community.

By clicking “Sign up for ”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on ? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ETL/ETL.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,7 @@
#include <iostream>
#include <fstream>
#include <eigen3/Eigen/Dense>
#include <vector>

class ETL
{
Expand All@@ -29,4 +30,4 @@ class ETL
void EigentoFile(Eigen::MatrixXd data, std::string filename);
};

#endif
#endif
3 changes: 2 additions & 1 deletion LinearRegression/LinearRegression.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,7 @@
#define LinearRegression_h

#include <eigen3/Eigen/Dense>
#include <vector>

class LinearRegression
{
Expand All@@ -15,4 +16,4 @@ class LinearRegression
float RSquared(Eigen::MatrixXd y, Eigen::MatrixXd y_hat);
};

#endif
#endif