Open multiple Files
I want to open multiple measurement files and concatenate them to a single file.Unfortunately, due to the strange header of the files, it's not straightforward to use Import Multiple Files ... So, I set up a for loop and load every file via open() ..., process it one by one, and then concatenate them. It's astonishing how much slower for( open(...)) is compared to MFI.Some tricks that I tried:- l...