I'm new to NumPy, a problem blocks me.. --- I want to change a ndarray's value:
Here is the debug info.
(Pdb) Nodes[0,0]['f'] = np.array([i/9.0 for i in range(9)])
(Pdb) print Nodes[0,0]['f']
[ 0.00000000e+00 0.00000000e+00 5.67382835e+10 4.58280650e-41
1.00030523e-36 0.00000000e+00 1.00030523e-36 0.00000000e+00
2.28153811e-40]
(Pdb)
Why doesn't the value of Node[0,0]['f'] change?