I am looking for a way to pass NumPy arrays to Matlab.
I\'ve managed to do this by storing the array into an image using scipy.misc.imsave and then loa
Some time ago I faced the same problem and wrote the following scripts to allow easy copy and pasting of arrays back and forth from interactive sessions. Obviously only practical for small arrays, but I found it more convenient than saving/loading through a file every time:
Matlab -> Python
Python -> Matlab