I mainly use numpy for doing data analysis, do don't understand the underlying program well, so this might be obvious.
I don't understand the difference between setting an attribute by simply assigning it vs. calling a method that changes that attribute in-place. The example where you can do both is:
In [1]: import numpy as np
In [2]: a = np.array([[1, 2, 3],
...: [4, 5, 6]])
In [3]: a.shape
Out[3]: (2, 3)
In [4]: a.reshape(3,2)
Out[4]:
array([[1, 2],
[3, 4],
[5, 6]])
In [5]: a
Out[5]:
array([[1, 2, 3],
[4, 5, 6]])
In [6]: a.resize(3,2)
In [7]: a
Out[7]:
array([[1, 2],
[3, 4],
[5, 6]])
In [8]: a.shape = (6,)
In [9]: a
Out[9]: array([1, 2, 3, 4, 5, 6])
In [10]: a.__setattr__('shape',(3,2))
In [11]: a
Out[11]:
array([[1, 2],
[3, 4],
[5, 6]])
I don't understand what the difference is between inputs 6 and 8. Clearly both change the a.shape attribute in place, as opposed to returning the reshaped object as in 4. Do they both only call on a.__setattr__() as in 10? If so, why do they both exist?
(I am aware that a.resize() has the additional capacity to increase or decrease the memory allocated, but I'm not using that here --- does this duplicity only exist with the method adds some other capacity?)
def resizeline actually: github.com/numpy/numpy/blob/v1.7.0/numpy/core/… – askewchan Feb 21 at 1:07numpyfunctions, which have perfectly understandable behavior. It's the method vs. setting attribute I don't understand. It might be hidden in thecsource code but I don't know how to translate theccode into how theclassattribute is changing. – askewchan Feb 21 at 2:25