Answer the question
In order to leave comments, you need to log in
Numpy: linked arrays?
>>> import numpy as np
>>> a = np.array([1,2,3])
>>> a
array([1, 2, 3])
>>> b=a
>>> b
array([1, 2, 3])
>>> b[0]=321
>>> a
array([321, 2, 3])
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question