diff options
author | Jaime <jaime.frio@gmail.com> | 2015-02-06 16:04:15 -0800 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-02-06 16:04:15 -0800 |
commit | 3fdce81aff78bffab58717f69dfaff93dffcb0bc (patch) | |
tree | 9e07a848e98976de92b44056d7523070e4be6f7e | |
parent | 75eeb75f109c39de8c1cdc475043e7cd3420322b (diff) | |
parent | 0a338f7d8ac8bda597c4ff06068b3b2f3b20ddda (diff) | |
download | numpy-3fdce81aff78bffab58717f69dfaff93dffcb0bc.tar.gz |
Merge pull request #5540 from sandrotosi/master
DOC: Fix 'dimensions' typo in numpy.kron() help message
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 70fa3ab03..2d18c5bc8 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -711,7 +711,7 @@ def kron(a, b): Notes ----- - The function assumes that the number of dimenensions of `a` and `b` + The function assumes that the number of dimensions of `a` and `b` are the same, if necessary prepending the smallest with ones. If `a.shape = (r0,r1,..,rN)` and `b.shape = (s0,s1,...,sN)`, the Kronecker product has shape `(r0*s0, r1*s1, ..., rN*SN)`. |