Why is the numpy array immutable after being read using matplotlib.pyplot.imread? What is the reasoning behind that?
>>> import matplotlib
>>> test=matplotlib.pyplot.imread('download.jpeg')
>>> test.flags
C_CONTIGUOUS : True
F_CONTIGUOUS : False
OWNDATA : False
WRITEABLE : False
ALIGNED : True
WRITEBACKIFCOPY : False
UPDATEIFCOPY : False
test.