diff --git a/CPP_Implementation/RBF_aPID.cpp b/CPP_Implementation/RBF_aPID.cpp new file mode 100644 index 0000000..c7e35c5 --- /dev/null +++ b/CPP_Implementation/RBF_aPID.cpp @@ -0,0 +1,8 @@ +#include +#include + +int main() { + std::cout << "Test" << std::endl; + + return 0; +} diff --git a/README.md b/README.md index 743e574..e5b5752 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,7 @@ The method has been implemented in three ways: ![Numpy](images/nump_impl.png "Numpy") -3. C++ `CPP_Implementation`: Written in C++ (requiring `cmath`), for use on embedded systems. +3. [CPP_Implementation](/CPP_Implementation/): Written in C++ (requiring `cmath`), for use on embedded systems. + +To build executable: `g++ RBF_aPID.cpp -o RBF_aPID.exe`\ +To run: `./RBF_aPID.exe`