diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2021-09-21 15:54:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 15:54:11 -0700 |
commit | 66d33faabf1f19d4b192c38e927dfa727b0ed61f (patch) | |
tree | f657cee2e071c1394f993abf9f1b3a18504414c6 /doc/source/user/numpy-for-matlab-users.rst | |
parent | a838abe68ce6bf8164c31cc35a2ac8d5485754ec (diff) | |
parent | 83960267dc097742cb67ef575504afa56f82b102 (diff) | |
download | numpy-66d33faabf1f19d4b192c38e927dfa727b0ed61f.tar.gz |
Merge pull request #19911 from DimitriPapadopoulos/codespell
DOC: Typos found by codespell
Diffstat (limited to 'doc/source/user/numpy-for-matlab-users.rst')
-rw-r--r-- | doc/source/user/numpy-for-matlab-users.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/user/numpy-for-matlab-users.rst b/doc/source/user/numpy-for-matlab-users.rst index ed0be82a0..21e23482a 100644 --- a/doc/source/user/numpy-for-matlab-users.rst +++ b/doc/source/user/numpy-for-matlab-users.rst @@ -313,11 +313,11 @@ Linear algebra equivalents * - ``a(:,find(v > 0.5))`` - ``a[:,np.nonzero(v > 0.5)[0]]`` - - extract the columms of ``a`` where vector v > 0.5 + - extract the columns of ``a`` where vector v > 0.5 * - ``a(:,find(v>0.5))`` - ``a[:, v.T > 0.5]`` - - extract the columms of ``a`` where column vector v > 0.5 + - extract the columns of ``a`` where column vector v > 0.5 * - ``a(a<0.5)=0`` - ``a[a < 0.5]=0`` @@ -819,6 +819,6 @@ found in the `topical software page <https://scipy.org/topical-software.html>`__ See `List of Python software: scripting <https://en.wikipedia.org/wiki/List_of_Python_software#Embedded_as_a_scripting_language>`_ -for a list of softwares that use Python as a scripting language +for a list of software that use Python as a scripting language MATLABĀ® and SimuLinkĀ® are registered trademarks of The MathWorks, Inc. |