So I have the following loop:
for temperature in [-40,25,85]: for voltage in [24, 28, 32]: for power in [50,100,200]: #measurement 1 ... #measurement 2 ... There is a question of how to organize the measured data. Up to now I've been creating a separate folder at each loop for each loop variable, so if I want to grab the data for measurement 1 at -40°C, 28V and 100W, I'll just go to ./-40/28/100. It's been working reasonably well but I cannot help wondering whether there is a better way.
./-40,28,100/