I'm new to Python, but I use it to process data. I've got a large amount of data stored as float arrays:
data1 data2 data3 I want to run similar processing for each data file. I was thinking of using a for loop:
for i in range(1,4): I would like to then multiply the three data files by two, but I'm not sure how to continue afterwards. I imagine it would look like his:
for i in range(1,4): data_i=data_i*2 Thank you.
call the three data files?!?!?!