MATLAB to Python cheatsheet Getting started What do we need? Some Python libraries installed to start: NumPy SciPy Matplotlib SymPy Important The general structure of these notes is: % Some MATLAB code x = 10; disp(x); # followed by a equivalent/similar Python code x = 10 print(x) Contents Language Fundamentals Matrices Plotting Object Oriented Programming Graphical User Interfaces References http://mathesaurus.sourceforge.net/matlab-numpy.html https://docs.scipy.org/doc/numpy-dev/user/numpy-for-matlab-users.html http://www.mathworks.com/help/matlab/ https://docs.python.org/2/reference/index.html https://docs.scipy.org/doc/numpy-dev/user/quickstart.html