@@ -21,6 +21,13 @@ contains some additional information about how to use the package
2121
2222Some Differences from MATLAB
2323----------------------------
24+ The python-control package makes use of NumPy and SciPy. A list of
25+ general differences between NumPy and MATLAB can be found here:
26+
27+ http://www.scipy.org/NumPy_for_Matlab_Users
28+
29+ In terms of the python-control package more specifically, here are
30+ some thing to keep in mind:
2431* You must include commas in vectors. So [1 2 3] must be [1, 2, 3].
2532* Functions that return multiple arguments use tuples
2633* Can't use braces for collections; use tuples instead
@@ -30,16 +37,16 @@ Some Differences from MATLAB
3037
3138Getting Started
3239---------------
33- 1. Download the latest release from http:sf.net/projects/python-control/files.
40+ 1. Download latest release from http:// sf.net/projects/python-control/files.
34412. Untar the source code in a temporary directory and run 'python setup.py
3542 install' to build and install the code
36433. To see if things are working correctly, run ipython -pylab and run the
3744 script 'examples/secord-matlab.py'. This should generate a set response,
3845 Bode plot and Nyquist plot for a simple second order system.
39464. To see the commands that are available, run the following commands in
4047 ipython::
41- >>> import control
42- >>> ?control.matlab
48+ >>> import control
49+ >>> ?control.matlab
43505. If you want to have a MATLAB-like environment for running the control
4451 toolbox, use::
45- >>> from control.matlab import *
52+ >>> from control.matlab import *
0 commit comments