Answers for "numpy array dim"

1

python numpy array size of n

numpy.array([0] * n) #creates an int64 numpy array of size n with each element having a vaule of 0
numpy.array([0] * n, dtype = '<type>') #creates a numpy array of size n with a type of <type>
Posted by: Guest on October-07-2020
0

dimensions of np array python

>>> x = np.zeros((3, 5, 2), dtype=np.complex128)
>>> x.size
30
>>> np.prod(x.shape)
30
Posted by: Guest on April-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language