I am pretty new at python and numpy, so sorry if the question is kind of obvious. Looking on the internet I could not find the right answer. I need to create a 2 dimensions (a.ndim -->2) array of unknown size in python. Is it possible? I have found a way for 1 dimension passing through a list but no luck with 2 dimension.
example
for i in range(0,Nsens):
count=0
for l in range (0,my_data.shape[0]):
if my_data['Node_ID'][l]==sensors_name[i]:
temp[count,i]=my_data['Temperature'][l]
count=count+1
else:
count=count
Where temp is the array I need to initialize.