├── .gitignore ├── MAIN_readDataLog.m ├── README.md ├── RK_10.cpp ├── RK_10.h ├── RK_2.cpp ├── RK_2.h ├── RK_45.cpp ├── RK_45.h ├── RK_4A.cpp ├── RK_4A.h ├── RK_4B.cpp ├── RK_4B.h ├── RK_5.cpp ├── RK_5.h ├── integrator.cpp ├── integrator.h ├── license.txt ├── main.cpp └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/.gitignore -------------------------------------------------------------------------------- /MAIN_readDataLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/MAIN_readDataLog.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/README.md -------------------------------------------------------------------------------- /RK_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_10.cpp -------------------------------------------------------------------------------- /RK_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_10.h -------------------------------------------------------------------------------- /RK_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_2.cpp -------------------------------------------------------------------------------- /RK_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_2.h -------------------------------------------------------------------------------- /RK_45.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_45.cpp -------------------------------------------------------------------------------- /RK_45.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_45.h -------------------------------------------------------------------------------- /RK_4A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_4A.cpp -------------------------------------------------------------------------------- /RK_4A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_4A.h -------------------------------------------------------------------------------- /RK_4B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_4B.cpp -------------------------------------------------------------------------------- /RK_4B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_4B.h -------------------------------------------------------------------------------- /RK_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_5.cpp -------------------------------------------------------------------------------- /RK_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/RK_5.h -------------------------------------------------------------------------------- /integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/integrator.cpp -------------------------------------------------------------------------------- /integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/integrator.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/license.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/main.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPeterKelly/RungeKuttaCpp/HEAD/makefile --------------------------------------------------------------------------------