Go to file
Jarvis Schultz 36c388aa20 Major formatting update to Python library
+ Fixed some spelling mistakes
 + Cleaned up tab/space indentation. Previously some of the samples would not
   work if copied/pasted into a Python interpreter because of mixed tabs/spaces
 + Cleared all trailing whitespace
 + Missing quotation marks in some sample code caused mistakes with printing
   messages
 + Added all import statements to some of the examples that already had some
   import statements
2018-11-14 07:57:23 -06:00
doc Incrementing patch version for release on PyPi 2018-09-06 16:27:10 -05:00
packages Major formatting update to Python library 2018-11-14 07:57:23 -06:00
.gitignore Python packaging cleanup 2018-08-14 15:45:39 -05:00
README.md Modify README's and update docs 2018-09-03 17:38:37 -05:00

README.md

Modern Robotics: Mechanics, Planning, and Control

Code Library

This repository contains the code library accompanying Modern Robotics: Mechanics, Planning, and Control (Kevin Lynch and Frank Park, Cambridge University Press 2017). The user manual is in the doc directory.

The functions are available in:

  • Python
  • MATLAB
  • Mathematica

Each function has a commented section above it explaining the inputs required for its use as well as an example of how it can be used and what the output will be. This repository also contains a pdf document that provides an overview of the available functions using MATLAB syntax. Functions are organized according to the chapter in which they are introduced in the book. Basic functions, such as functions to calculate the magnitude of a vector, normalize a vector, test if the value is near zero, and perform matrix operations such as multiplication and inverses, are not documented here.

The primary purpose of the provided software is to be easy to read and educational, reinforcing the concepts in the book. The code is optimized neither for efficiency nor robustness.