I am trying to write up some code that takes advantage of np.tile() on
arbitrary array-like objects. I only want to tile along the first axis. Any
other axis, if they exist, should be left alone. I first coerce the object
using np.asanyarray(), tile it, and then coerce it back to the original
type.

The problem seems to be that some of my array-like objects are being
"over-coerced", particularly the list of tuples. I tried doing
"np.asanyarray(a, dtype='O')", but that still turns it into a 2-D array.

Am I missing something?

Thanks,
Ben Root
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to