Michal Seta wrote:
i rather load txt files in a table than have several tables because im assuming that will be less cpu intensive. ami right?
Having many arrays does not affect CPU usage but memory consumption.
In fact, loading files to arrays uses the CPU, while storing them in arrays does not. Loading large files (i.e. soundfiles) into arrays can also cause audio interruptions. So better to load everything into arrays ahead of time.
best, d.