Skip to content

JorgeDeLosSantos/matlab-to-python-cheatsheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MATLAB to Python cheatsheet

Getting started

What do we need?

Some Python libraries installed to start:

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


References

  1. http://mathesaurus.sourceforge.net/matlab-numpy.html
  2. https://docs.scipy.org/doc/numpy-dev/user/numpy-for-matlab-users.html
  3. http://www.mathworks.com/help/matlab/
  4. https://docs.python.org/2/reference/index.html
  5. https://docs.scipy.org/doc/numpy-dev/user/quickstart.html

About

A MATLAB to Python cheatsheet

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages