Hi experts!
How can i create N empty NUmpy arrays or lists (L1, L2, L3, ..., LN) in a 'for' cycle, i.e.:
for j in srange(N): Lj=np.empty(A)
(A= numbers of element in the array).
Waiting for your answers.
Thanks a lot.
1 | initial version |
Hi experts!
How can i create N empty NUmpy arrays or lists (L1, L2, L3, ..., LN) in a 'for' cycle, i.e.:
for j in srange(N): Lj=np.empty(A)
(A= numbers of element in the array).
Waiting for your answers.
Thanks a lot.
2 | No.2 Revision |
Hi experts!
How can i create N empty NUmpy arrays or lists (L1, L2, L3, ..., LN) in a 'for' cycle, i.e.:
for j in srange(N):
(A= numbers of element in the array).
Waiting for your answers.
Thanks a lot.