From c18d4bbe591340ff721a1835d1f6c48e71356350 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 7 Apr 2014 18:18:09 +0200 Subject: [PATCH] Update view_as_windows docstring --- skimage/util/shape.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skimage/util/shape.py b/skimage/util/shape.py index d47150af..910b5b97 100644 --- a/skimage/util/shape.py +++ b/skimage/util/shape.py @@ -123,7 +123,8 @@ def view_as_windows(arr_in, window_shape, step=1): Returns ------- arr_out : ndarray - (rolling) window view of the input array. + (rolling) window view of the input array. If `arr_in` is + non-contiguous, a copy is made. Notes -----