Difference between revisions of "Getting Started with the Modern Robotics Code Library"

From Mech
Jump to navigationJump to search
 
Line 1: Line 1:
You will need is the Modern Robotics (MR) code library that accompanies the book "Modern Robotics."
You will need the Modern Robotics (MR) code library that accompanies the book "Modern Robotics."


Visit [https://github.com/NxRLab/ModernRobotics https://github.com/NxRLab/ModernRobotics] and download the software. Included with the download is a pdf manual that describes each of the functions. Each function has an example usage in the comments in the code itself. You should decide which language you would like to use for your programming assignments (Python, Mathematica, or MATLAB [or the free Octave clone]), and try a couple of the examples in the comments to make sure you understand how to use the code, even though you don't (yet!) know the purpose of many of the functions. As an example, in MATLAB, you could enter
Visit [https://github.com/NxRLab/ModernRobotics https://github.com/NxRLab/ModernRobotics] and download the software. Included with the download is a pdf manual that describes each of the functions. Each function has an example usage in the comments in the code itself. You should decide which language you would like to use for your programming assignments (Python, Mathematica, or MATLAB [or the free Octave clone]), and try a couple of the examples in the comments to make sure you understand how to use the code, even though you don't (yet!) know the purpose of many of the functions. As an example, in MATLAB, you could enter

Latest revision as of 16:08, 16 March 2023

You will need the Modern Robotics (MR) code library that accompanies the book "Modern Robotics."

Visit https://github.com/NxRLab/ModernRobotics and download the software. Included with the download is a pdf manual that describes each of the functions. Each function has an example usage in the comments in the code itself. You should decide which language you would like to use for your programming assignments (Python, Mathematica, or MATLAB [or the free Octave clone]), and try a couple of the examples in the comments to make sure you understand how to use the code, even though you don't (yet!) know the purpose of many of the functions. As an example, in MATLAB, you could enter

se3mat = [ 0, 0, 0, 0; 0, 0, -1.5708, 2.3562; 0, 1.5708, 0, 2.3562; 0, 0, 0, 0];
T = MatrixExp6(se3mat)

and you should get (approximately) the resulting matrix

T = [1, 0, 0, 0; 0, 0, -1, 0; 0, 1, 0, 3; 0, 0, 0, 1]

(Your "zeros" and "ones" may be represented as floating point numbers, not integers.)

Do not proceed until you've downloaded the code, decided on your programming language, and tested the code!