├── .gitignore ├── LICENSE ├── README.md ├── motor_analysis ├── 350kvTP.PNG ├── 350kvVelli.PNG └── VelliPlot.m ├── numeric_path_opt ├── Main.m └── predictionmatrices.m └── various └── path.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/README.md -------------------------------------------------------------------------------- /motor_analysis/350kvTP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/motor_analysis/350kvTP.PNG -------------------------------------------------------------------------------- /motor_analysis/350kvVelli.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/motor_analysis/350kvVelli.PNG -------------------------------------------------------------------------------- /motor_analysis/VelliPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/motor_analysis/VelliPlot.m -------------------------------------------------------------------------------- /numeric_path_opt/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/numeric_path_opt/Main.m -------------------------------------------------------------------------------- /numeric_path_opt/predictionmatrices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/numeric_path_opt/predictionmatrices.m -------------------------------------------------------------------------------- /various/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madcowswe/ODriveTopOld/HEAD/various/path.c --------------------------------------------------------------------------------