Initial creation of cpp version. Updated README.

This commit is contained in:
Andru Liu
2024-10-07 23:50:52 -07:00
parent c0bb895838
commit 9bf4825a07
2 changed files with 12 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <iostream>
#include <cmath>
int main() {
std::cout << "Test" << std::endl;
return 0;
}
+4 -1
View File
@@ -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`