Answers for "numpy array with 2 times each value"

0

numpy array with 2 times each value

>>> np.repeat(3, 4)
array([3, 3, 3, 3])

>>> x = np.array([1,2,3,4])
>>> np.repeat(x, 2)
array([1, 1, 2, 2, 3, 3, 4, 4])
Posted by: Guest on March-22-2020

Code answers related to "numpy array with 2 times each value"

Python Answers by Framework

Browse Popular Code Answers by Language