This should be easy...
I want to concatenate arrays A, B and C. It is possible that one or more of them may not exist or be empty. I want the remaining arrays to be concatenated. If, for example, B is empty, I want to concatenate A with C.
I've read these questions that seem relevant:
How can I check whether the numpy array is empty or not?
How do you 'remove' a numpy array from a list of numpy arrays?
I assume there's a 1-2 line way to do this.