Introduction#
MATLAB® and NumPy have a lot in common, but NumPy was created to work withPython, not to be a MATLAB clone. This guide will help MATLAB users get startedwith NumPy.
Some key differences#
In MATLAB, the basic type, even for scalars, is amultidimensional array. Array assignments in MATLAB are stored as2D arrays of double precision floating point numbers, unless youspecify the number of dimensions and type. Operations on the 2Dinstances of these arrays are modeled on matrix operations inlinear algebra. | In NumPy, the basic type is a multidimensional |
MATLAB numbers indices from 1; | NumPy, like Python, numbers indices from 0; |
MATLAB’s scripting language was created for linear algebra so thesyntax for some array manipulations is more compact thanNumPy’s. On the other hand, the API for adding GUIs and creatingfull-fledged applications is more or less an afterthought. | NumPy is based on Python, ageneral-purpose language. The advantage to NumPyis access to Python libraries including: SciPy, Matplotlib,Pandas, OpenCV,and more. In addition, Python is often embedded as a scripting languagein other software, allowing NumPy to be used there too. |
MATLAB array slicing uses pass-by-value semantics, with a lazycopy-on-write scheme to prevent creating copies until they areneeded. Slicing operations copy parts of the array. | NumPy array slicing uses pass-by-reference, that does not copythe arguments. Slicing operations are views into an array. |
Rough equivalents#
The table below gives rough equivalents for some common MATLABexpressions. These are similar expressions, not equivalents. Fordetails, see the documentation.
In the table below, it is assumed that you have executed the followingcommands in Python:
import numpy as npfrom scipy import io, integrate, linalg, signalfrom scipy.sparse.linalg import cg, eigs
Also assume below that if the Notes talk about “matrix” that thearguments are two-dimensional entities.
General purpose equivalents#
MATLAB | NumPy | Notes |
---|---|---|
|
| get help on the function func |
| see note HELP | find out where func is defined |
|
| print source for func (if not a native function) |
|
| comment a line of code with the text |
for i=1:3 fprintf('%i\n',i)end | for i in range(1, 4): print(i) | use a for-loop to print the numbers 1, 2, and 3 using |
|
| short-circuiting logical AND operator (Python native operator);scalar arguments only |
|
| short-circuiting logical OR operator (Python native operator);scalar arguments only |
>> 4 == 4ans = 1>> 4 == 5ans = 0 | >>> 4 == 4True>>> 4 == 5False | The boolean objectsin Python are |
a=4if a==4 fprintf('a = 4\n')elseif a==5 fprintf('a = 5\n')end | a = 4if a == 4: print('a = 4')elif a == 5: print('a = 5') | create an if-else statement to check if |
|
| complex numbers |
|
| distance from 1 to the next larger representable real number in doubleprecision |
|
| Load MATLAB variables saved to the file |
|
| integrate an ODE with Runge-Kutta 4,5 |
|
| integrate an ODE with BDF method |
Linear algebra equivalents#
MATLAB | NumPy | Notes |
---|---|---|
|
| number of dimensions of array |
|
| number of elements of array |
|
| “size” of array |
|
| get the number of elements of the n-th dimension of array |
|
| define a 2x3 2D array |
|
| construct a matrix from blocks |
|
| access last element in MATLAB vector (1xn or nx1) or 1D NumPy array |
|
| access element in second row, fifth column in 2D array |
|
| entire second row of 2D array |
|
| first 5 rows of 2D array |
|
| last 5 rows of 2D array |
|
| The first through third rows and fifth through ninth columns of a 2D array, |
|
| rows 2,4 and 5 and columns 1 and 3. This allows the matrix to bemodified, and doesn’t require a regular slice. |
|
| every other row of |
|
| every other row of |
|
|
|
|
|
|
|
| transpose of |
|
| conjugate transpose of |
|
| matrix multiply |
|
| element-wise multiply |
|
| element-wise divide |
|
| element-wise exponentiation |
|
| matrix whose i,jth element is (a_ij > 0.5). The MATLAB result is anarray of logical values 0 and 1. The NumPy result is an array of the booleanvalues |
|
| find the indices where ( |
|
| extract the columns of |
|
| extract the columns of |
|
|
|
|
|
|
|
| set all values to the same scalar value |
|
| NumPy assigns by reference |
|
| NumPy slices are by reference |
|
| turn array into vector (note that this forces a copy). To obtain thesame data ordering as in MATLAB, use |
|
| create an increasing vector (see note RANGES) |
|
| create an increasing vector (see note RANGES) |
|
| create a column vector |
|
| 3x4 two-dimensional array full of 64-bit floating point zeros |
|
| 3x4x5 three-dimensional array full of 64-bit floating point zeros |
|
| 3x4 two-dimensional array full of 64-bit floating point ones |
|
| 3x3 identity matrix |
|
| returns a vector of the diagonal elements of 2D array, |
|
| returns a square diagonal matrix whose nonzero values are the elements ofvector, |
rng(42,'twister')rand(3,4) | from numpy.random import default_rngrng = default_rng(42)rng.random(3, 4) or older version: | generate a random 3x4 array with default random number generator andseed = 42 |
|
| 4 equally spaced samples between 1 and 3, inclusive |
|
| two 2D arrays: one of x values, the other of y values |
| the best way to eval functions on a grid | |
|
| |
| the best way to eval functions on a grid | |
|
| create m by n copies of |
|
| concatenate columns of |
|
| concatenate rows of |
|
| maximum element of |
|
| maximum element of each column of array |
|
| maximum element of each row of array |
|
| compares |
|
| L2 norm of vector |
|
| element-by-element AND operator (NumPy ufunc) See noteLOGICOPS |
|
| element-by-element OR operator (NumPy ufunc) See note LOGICOPS |
|
| bitwise AND operator (Python native and NumPy ufunc) |
|
| bitwise OR operator (Python native and NumPy ufunc) |
|
| inverse of square 2D array |
|
| pseudo-inverse of 2D array |
|
| matrix rank of a 2D array |
|
| solution of a x = b for x |
| Solve | solution of x a = b for x |
|
| singular value decomposition of |
|
| Cholesky factorization of a 2D array |
|
| eigenvalues \(\lambda\) and eigenvectors \(v\) of |
|
| eigenvalues \(\lambda\) and eigenvectors \(v\) of |
|
| find the |
|
| QR decomposition |
|
| LU decomposition with partial pivoting(note: P(MATLAB) == transpose(P(NumPy))) |
|
| conjugate gradients solver |
|
| Fourier transform of |
|
| inverse Fourier transform of |
|
| sort each column of a 2D array, |
|
| sort the each row of 2D array, |
|
| save the array |
|
| perform a linear regression of the form \(\mathbf{Zx}=\mathbf{y}\) |
|
| downsample with low-pass filtering |
|
| a vector of unique values in array |
|
| remove singleton dimensions of array |
Notes#
Submatrix: Assignment to a submatrix can be done with lists ofindices using the ix_
command. E.g., for 2D array a
, one mightdo: ind=[1, 3];a[np.ix_(ind, ind)] += 100
.
HELP: There is no direct equivalent of MATLAB’s which
command,but the commands help
and numpy.source will usually list the filenamewhere the function is located. Python also has an inspect
module (doimportinspect
) which provides a getfile
that often works.
INDEXING: MATLAB uses one based indexing, so the initial elementof a sequence has index 1. Python uses zero based indexing, so theinitial element of a sequence has index 0. Confusion and flamewars arisebecause each has advantages and disadvantages. One based indexing isconsistent with common human language usage, where the “first” elementof a sequence has index 1. Zero based indexing simplifiesindexing.See also a text by prof.dr. Edsger W.Dijkstra.
RANGES: In MATLAB, 0:5
can be used as both a range literaland a ‘slice’ index (inside parentheses); however, in Python, constructslike 0:5
can only be used as a slice index (inside squarebrackets). Thus the somewhat quirky r_
object was created to allowNumPy to have a similarly terse range construction mechanism. Note thatr_
is not called like a function or a constructor, but ratherindexed using square brackets, which allows the use of Python’s slicesyntax in the arguments.
LOGICOPS: &
or |
in NumPy is bitwise AND/OR, while in MATLAB &and |
are logical AND/OR. The two can appear to work the same,but there are important differences. If you would have used MATLAB’s &
or |
operators, you should use the NumPy ufuncslogical_and
/logical_or
. The notable differences between MATLAB’s andNumPy’s &
and |
operators are:
Non-logical {0,1} inputs: NumPy’s output is the bitwise AND of theinputs. MATLAB treats any non-zero value as 1 and returns the logicalAND. For example
(3 & 4)
in NumPy is0
, while in MATLAB both3
and4
are considered logical true and(3 & 4)
returns1
.Precedence: NumPy’s & operator is higher precedence than logicaloperators like
<
and>
; MATLAB’s is the reverse.
If you know you have boolean arguments, you can get away with usingNumPy’s bitwise operators, but be careful with parentheses, like this: z= (x > 1) & (x < 2)
. The absence of NumPy operator forms of logical_and
and logical_or
is an unfortunate consequence of Python’s design.
RESHAPE and LINEAR INDEXING: MATLAB always allows multi-dimensionalarrays to be accessed using scalar or linear indices, NumPy does not.Linear indices are common in MATLAB programs, e.g. find()
on a matrixreturns them, whereas NumPy’s find behaves differently. When convertingMATLAB code it might be necessary to first reshape a matrix to a linearsequence, perform some indexing operations and then reshape back. Asreshape (usually) produces views onto the same storage, it should bepossible to do this fairly efficiently. Note that the scan order used byreshape in NumPy defaults to the ‘C’ order, whereas MATLAB uses theFortran order. If you are simply converting to a linear sequence andback this doesn’t matter. But if you are converting reshapes from MATLABcode which relies on the scan order, then this MATLAB code: z =reshape(x,3,4);
should become z = x.reshape(3,4,order='F').copy()
inNumPy.
‘array’ or ‘matrix’? Which should I use?#
Historically, NumPy has provided a special matrix type, np.matrix, whichis a subclass of ndarray which makes binary operations linear algebraoperations. You may see it used in some existing code instead of np.array.So, which one to use?
Short answer#
Use arrays.
They support multidimensional array algebra that is supported in MATLAB
They are the standard vector/matrix/tensor type of NumPy. Many NumPyfunctions return arrays, not matrices.
There is a clear distinction between element-wise operations andlinear algebra operations.
You can have standard vectors or row/column vectors if you like.
Until Python 3.5 the only disadvantage of using the array type was that youhad to use dot
instead of *
to multiply (reduce) two tensors(scalar product, matrix vector multiplication etc.). Since Python 3.5 youcan use the matrix multiplication @
operator.
Given the above, we intend to deprecate matrix
eventually.
Long answer#
NumPy contains both an array
class and a matrix
class. Thearray
class is intended to be a general-purpose n-dimensional arrayfor many kinds of numerical computing, while matrix
is intended tofacilitate linear algebra computations specifically. In practice thereare only a handful of key differences between the two.
Operators
*
and@
, functionsdot()
, andmultiply()
:For
array
, ``*`` means element-wise multiplication, while``@`` means matrix multiplication; they have associated functionsmultiply()
anddot()
. (Before Python 3.5,@
did not existand one had to usedot()
for matrix multiplication).For
matrix
, ``*`` means matrix multiplication, and forelement-wise multiplication one has to use themultiply()
function.
Handling of vectors (one-dimensional arrays)
For
array
, the vector shapes 1xN, Nx1, and N are all differentthings. Operations likeA[:,1]
return a one-dimensional array ofshape N, not a two-dimensional array of shape Nx1. Transpose on aone-dimensionalarray
does nothing.(Video) Data Analysis with Python - Full Course for Beginners (Numpy, Pandas, Matplotlib, Seaborn)For
matrix
, one-dimensional arrays are always upconverted to 1xNor Nx1 matrices (row or column vectors).A[:,1]
returns atwo-dimensional matrix of shape Nx1.
Handling of higher-dimensional arrays (ndim > 2)
array
objects can have number of dimensions > 2;matrix
objects always have exactly two dimensions.
Convenience attributes
array
has a .T attribute, which returns the transpose ofthe data.matrix
also has .H, .I, and .A attributes, which returnthe conjugate transpose, inverse, andasarray()
of the matrix,respectively.
Convenience constructor
The
array
constructor takes (nested) Python sequences asinitializers. As in,array([[1,2,3],[4,5,6]])
.The
matrix
constructor additionally takes a convenientstring initializer. As inmatrix("[123;456]")
.
There are pros and cons to using both:
array
:)
Element-wise multiplication is easy:A*B
.:(
You have to remember that matrix multiplication has its ownoperator,@
.(Video) 05 NymPy | Numerical Python | 3-Dimensional Image Array Manipulation: AI and ML Foundations:)
You can treat one-dimensional arrays as either row or columnvectors.A @ v
treatsv
as a column vector, whilev @ A
treatsv
as a row vector. This can save you having totype a lot of transposes.:)
array
is the “default” NumPy type, so it gets the mosttesting, and is the type most likely to be returned by 3rd partycode that uses NumPy.:)
Is quite at home handling data of any number of dimensions.:)
Closer in semantics to tensor algebra, if you are familiarwith that.:)
All operations (*
,/
,+
,-
etc.) areelement-wise.:(
Sparse matrices fromscipy.sparse
do not interact as wellwith arrays.
matrix
:\\
Behavior is more like that of MATLAB matrices.<:(
Maximum of two-dimensional. To hold three-dimensional data youneedarray
or perhaps a Python list ofmatrix
.<:(
Minimum of two-dimensional. You cannot have vectors. They must becast as single-column or single-row matrices.<:(
Sincearray
is the default in NumPy, some functions mayreturn anarray
even if you give them amatrix
as anargument. This shouldn’t happen with NumPy functions (if it doesit’s a bug), but 3rd party code based on NumPy may not honor typepreservation like NumPy does.:)
A*B
is matrix multiplication, so it looks just like you writeit in linear algebra (For Python >= 3.5 plain arrays have the sameconvenience with the@
operator).<:(
Element-wise multiplication requires calling a function,multiply(A,B)
.<:(
The use of operator overloading is a bit illogical:*
does not work element-wise but/
does.(Video) NumPy Tutorial : Numpy Full CourseInteraction with
scipy.sparse
is a bit cleaner.
The array
is thus much more advisable to use. Indeed, we intend todeprecate matrix
eventually.
Customizing your environment#
In MATLAB the main tool available to you for customizing theenvironment is to modify the search path with the locations of yourfavorite functions. You can put such customizations into a startupscript that MATLAB will run on startup.
NumPy, or rather Python, has similar facilities.
To modify your Python search path to include the locations of yourown modules, define the
PYTHONPATH
environment variable.To have a particular script file executed when the interactive Pythoninterpreter is started, define the
PYTHONSTARTUP
environmentvariable to contain the name of your startup script.
Unlike MATLAB, where anything on your path can be called immediately,with Python you need to first do an ‘import’ statement to make functionsin a particular file accessible.
For example you might make a startup script that looks like this (Note:this is just an example, not a statement of “best practices”):
# Make all numpy available via shorter 'np' prefiximport numpy as np## Make the SciPy linear algebra functions available as linalg.func()# e.g. linalg.lu, linalg.eig (for general l*[emailprotected][emailprotected] solution)from scipy import linalg## Define a Hermitian functiondef hermitian(A, **kwargs): return np.conj(A,**kwargs).T# Make a shortcut for hermitian:# hermitian(A) --> H(A)H = hermitian
To use the deprecated matrix and other matlib functions:
# Make all matlib functions accessible at the top level via M.func()import numpy.matlib as M# Make some matlib functions accessible directly at the top level via, e.g. rand(3,3)from numpy.matlib import matrix,rand,zeros,ones,empty,eye
Links#
Another somewhat outdated MATLAB/NumPy cross-reference can be found athttp://mathesaurus.sf.net/
An extensive list of tools for scientific work with Python can befound in the topical software page.
SeeList of Python software: scriptingfor a list of software that use Python as a scripting language
MATLAB® and SimuLink® are registered trademarks of The MathWorks, Inc.