I am using python and munpy. I have 2 dimesional object mask. It is graphic mak with integer coordinates and value.I want to use part of matrix like:
mask[:100,300:]
Is it possible to create variable like range = (:100,300:) and to use like:
mask[range]
or similar approach
range = ":100,300:"and thenmask[eval(range)]could do it.