TutorialΒΆ
Authors: | MDP Developers |
---|---|
Copyright: | This document has been placed in the public domain. |
Homepage: | http://mdp-toolkit.sourceforge.net |
Contact: | mdp-toolkit-users@lists.sourceforge.net |
Version: | 3.5 |
This document is also available as pdf file.
This is a guide to basic and some more advanced features of
the MDP library. Besides the present tutorial, you can learn
more about MDP by using the standard Python tools.
All MDP nodes have doc-strings, the public
attributes and methods have telling names: All information about a
node can be obtained using the help
and dir
functions within
the Python interpreter. In addition to that, an automatically generated
API documentation
is available.
Note
Code snippets throughout the script will be denoted by:
>>> print "Hello world!"
Hello world!
To run the following code examples don’t forget to import mdp
and numpy
in your Python session with:
>>> import mdp
>>> import numpy as np
You’ll find all the code of this tutorial here.