Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NxRLab/ModernRobotics
Modern Robotics: Mechanics, Planning, and Control Code Library --- 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.
https://github.com/NxRLab/ModernRobotics
Last synced: 1 day ago
JSON representation
Modern Robotics: Mechanics, Planning, and Control Code Library --- 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.
- Host: GitHub
- URL: https://github.com/NxRLab/ModernRobotics
- Owner: NxRLab
- License: mit
- Created: 2016-10-04T14:24:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T11:37:52.000Z (5 months ago)
- Last Synced: 2024-11-11T13:11:34.874Z (2 days ago)
- Language: Python
- Homepage: http://modernrobotics.org/
- Size: 1.13 MB
- Stars: 1,979
- Watchers: 88
- Forks: 821
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Modern Robotics: Mechanics, Planning, and Control
# Code LibraryThis repository contains the code library accompanying [_Modern Robotics:
Mechanics, Planning, and Control_](http://modernrobotics.org) (Kevin Lynch
and Frank Park, Cambridge University Press 2017). The
[user manual](/doc/MRlib.pdf) is in the doc directory.The functions are available in:
* Python
* MATLAB
* MathematicaEach 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.
Some unofficial versions in other languages are being developed:
* [C++ version](https://github.com/Le0nX/ModernRoboticsCpp)
* [Julia version](https://github.com/ferrolho/ModernRoboticsBook.jl)
* [Nim version](https://github.com/Nimbotics/ModernRoboticsNim)Some libraries built on ours:
* [KinematicsFromDescriptionTool](https://github.com/Interbotix/kinematics_from_description), which calculates the kinematics input parameters from a robot's URDF or robot_description parameter using ROS and Python3.
* [mr_urdf_loader](https://github.com/tjdalsckd/mr_urdf_loader), which generates `M`, `Slist`, `Blist`, `Mlist` and `Glist` parameters for kinematics and dynamics. It also provides UR5 simulation using `PyBullet`.
* [tf_rbdl](https://github.com/junhyeokahn/tf_rbdl#tf_rbdl), which refactors the Python version using the package `tensorflow`.Any contribution is welcomed but the maintenance team for this library here doesn't vouch for the reliability of those projects.