I am trying to package a set of vector arrays into a single rec array with column titles.
 c = numpy.rec.fromarrays([a,b],names='a,b')
the problem is there is no 'copy' argument in .fromarrays which I can set to False. i.e. is there a way to do this without the overhead of copying?
 
Thanks
 
Nicholas