M = np.zeros((N,L))
The above statement gives a N x L matrix initially filled with 0. I need a similar statement to create a N x L matrix filled with (0,0)
tuples. How can I create it?
M = np.zeros((N,L))
The above statement gives a N x L matrix initially filled with 0. I need a similar statement to create a N x L matrix filled with (0,0)
tuples. How can I create it?