I want to create 24 matrices like this:
import numpy as np
tabla1 = np.empty((25*5,3 + 11))
tabla2 = np.empty((25*5,3 + 11))
.
.
.
tabla24 = np.empty((25*5,3 + 11))
To avoid having to write it 24 times, I thought about using a for
cycle, but I do not know the proper syntax.
I tried this:
for i in range(1, 25):
tabla{i} = np.empty((25*5,3 + 11))
But it's wrong.
What would be the right way to do it?