Return an iterator over indices of the master array which are spanned by the conformed array.
Returns : |
|
---|
Examples
>>> p.location
[(3, 5), (0, 1), (0, 3)]
>>> for index in p.master_ndindex():
... print index
...
(3, 0, 0)
(3, 0, 1)
(3, 0, 2)
(4, 0, 0)
(4, 0, 1)
(4, 0, 2)