summaryrefslogtreecommitdiff
path: root/doc/source/user/numpy-for-matlab-users.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/user/numpy-for-matlab-users.rst')
-rw-r--r--doc/source/user/numpy-for-matlab-users.rst6
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.