Difference between revisions of "Software tutorial/About the course software"
m |
m |
||
Line 10: | Line 10: | ||
''From Wikipedia'': Python is a high-level programming language whose design philosophy emphasizes code readability. Python aims to combine "remarkable power with very clear syntax", and its standard library of built-in functions is large and comprehensive. | ''From Wikipedia'': Python is a high-level programming language whose design philosophy emphasizes code readability. Python aims to combine "remarkable power with very clear syntax", and its standard library of built-in functions is large and comprehensive. | ||
We will use the [ | We will use the [https://www.scipy.org/ NumPy and SciPy] modules (the equivalent of a MATLAB toolbox), to provide scientific computing capabilities to Python. These modules, like MATLAB, allow you to handle large data arrays with little effort. They provide all the tools we require for this course. | ||
We will also use the [http://matplotlib.sourceforge.net/index.html matplotlib] module, which provides Python with plotting capabilities similar to MATLAB. | We will also use the [http://matplotlib.sourceforge.net/index.html matplotlib] module, which provides Python with plotting capabilities similar to MATLAB. |
Latest revision as of 10:29, 15 September 2018
MATLAB | Python |
---|---|
MATLAB (MATrix LABoratory) is a high level computer language/ interactive software package developed and distributed by MathWorks™. Matlab was first developed in the 1970s by Cleve Molar. Cleve was later joined by John N. Little and Steve Bangert and the three went on to found MathWorks™. MATLAB excels at performing matrix operations and can handle large data sets (stored as matrices) very easily. MATLAB was originally designed as a user friendly interface for LINPACK and EISPACK and so was intended for linear algebra application. Since then MATLAB has greatly expanded it's core abilities to encompass a large array of graphic and numeric applications. These core abilities may in turn be expanded further through the addition of specialized "tool boxes". |
From Wikipedia: Python is a high-level programming language whose design philosophy emphasizes code readability. Python aims to combine "remarkable power with very clear syntax", and its standard library of built-in functions is large and comprehensive. We will use the NumPy and SciPy modules (the equivalent of a MATLAB toolbox), to provide scientific computing capabilities to Python. These modules, like MATLAB, allow you to handle large data arrays with little effort. They provide all the tools we require for this course. We will also use the matplotlib module, which provides Python with plotting capabilities similar to MATLAB. You might not be familiar with Python. Here is a comparison with MATLAB:
|