diff options
author | rgommers <ralf.gommers@googlemail.com> | 2010-07-31 10:04:38 +0000 |
---|---|---|
committer | rgommers <ralf.gommers@googlemail.com> | 2010-07-31 10:04:38 +0000 |
commit | d0a25f19139a2987af5a4e2d1ebf4badb2802c16 (patch) | |
tree | 3d7218398060ce0c4f9d9d37241764fd57a8314a /numpy/lib/stride_tricks.py | |
parent | c38c9d4cd338cc147b67f1f160d69ab7ef0df097 (diff) | |
download | numpy-d0a25f19139a2987af5a4e2d1ebf4badb2802c16.tar.gz |
DOC: wiki merge, twodim_base and a few loose ones.
Diffstat (limited to 'numpy/lib/stride_tricks.py')
-rw-r--r-- | numpy/lib/stride_tricks.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/lib/stride_tricks.py b/numpy/lib/stride_tricks.py index ebd6d5a22..7358be222 100644 --- a/numpy/lib/stride_tricks.py +++ b/numpy/lib/stride_tricks.py @@ -33,16 +33,16 @@ def broadcast_arrays(*args): Parameters ---------- - `*args` : arrays + `*args` : array_likes The arrays to broadcast. Returns ------- broadcasted : list of arrays - These arrays are views on the original arrays. They are typically not - contiguous. Furthermore, more than one element of a broadcasted array - may refer to a single memory location. If you need to write to the - arrays, make copies first. + These arrays are views on the original arrays. They are typically + not contiguous. Furthermore, more than one element of a + broadcasted array may refer to a single memory location. If you + need to write to the arrays, make copies first. Examples -------- |