show/hide this revision's text 4 Reframed question to better illustrate the problem.

I'm trying to transform each element of a numpy array into an array itself (say, to interpret a greyscale image as a color image). In other words:

>>> my_ar = numpy.array((0,5,10))
[0, 5, 10]
>>> transformed = my_fun(my_ar)  # In reality, my_fun() would do something more useful
array([
      [ 0,  0, 0], 
      [ 5, 510, 5]15], 
      [10,10,10]])
10, 20, 30]])
>>> transformed.shape
(3, 3)

I've tried:

def my_fun_e(val):
    return numpy.array((val, valval*2, val)val*3))

my_fun = numpy.frompyfunc(my_fun_e, 1, 3)

but get:

my_fun(my_ar)
(array([0, array([[0 0 0], [ 5 10 15], 10][10 20 30]], dtype=object), array([0array([None, 5None, 10]None], dtype=object), array([0array([None, 5None, 10]None], dtype=object))

and I've tried:

my_fun = numpy.frompyfunc(my_fun_e, 1, 1)

but get:

>>> my_fun(testmy_fun(my_ar)
(array([[0 0 0], [ 5 5 5]10 15], [10 10 10]], dtype=object), array([None, None, None], dtype=object), array([None20 30]], Nonedtype=object)

This is close, None]but not quite right -- I get an array of objects, dtype=object))

Update 2: Thanks for all the responses involving resizing the not an array of ints.

Update 3! OK. I've realized that my example was too simple beforehand -- I think that both tile() and dstack() would work in that route. I guess don't just want to replicate my real question is: can data in a ufunc change the dimensionality of the elements it receives? Or do I need third dimension, I'd like to change transform it at the shape of my array beforehandsame time. Maybe this is clearer?

show/hide this revision's text 3 Clarified...

I'm trying to transform each element of a numpy array into an array itself (say, to interpret a greyscale image as a color image). In other words:

>>> my_ar = numpy.array((0,5,10))
[0, 5, 10]
>>> transformed = my_fun(my_ar)  # In reality, my_fun() would do something more useful
array([
      [ 0, 0, 0], 
      [ 5, 5, 5], 
      [10,10,10]])
>>> transformed.shape
(3, 3)

I've tried:

def my_fun_e(val):
    return numpy.array((val, val, val))

my_fun = numpy.frompyfunc(my_fun_e, 1, 3)

but get:

my_fun(my_ar)
(array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object))

and I've tried:

my_fun = numpy.frompyfunc(my_fun_e, 1, 1)

but get:

>>> my_fun(test)
(array([[0 0 0], [5 5 5], [10 10 10]], dtype=object), array([None, None, None], dtype=object), array([None, None, None], dtype=object))

Update 2: The problem really seems to be that I'm getting an array of array objects back, not a higher-dimensional Thanks for all the responses involving resizing the array beforehand -- I think that both tile() and dstack() would work in that route. My result stops working like I guess my real question is: can a normal array.

Any thoughts on how ufunc change the dimensionality of the elements it receives? Or do I could make this workneed to change the shape of my array beforehand?

show/hide this revision's text 2 Added information about problem

I'm trying to transform each element of a numpy array into an array itself (say, to interpret a greyscale image as a color image). In other words:

>>> my_ar = numpy.array((0,5,10))
[0, 5, 10]
>>> transformed = my_fun(my_ar)  # In reality, my_fun() would do something more useful
array([
      [ 0, 0, 0], 
      [ 5, 5, 5], 
      [10,10,10]])
>>> transformed.shape
(3, 3)

I've tried:

def my_fun_e(val):
    return numpy.array((val, val, val))

my_fun = numpy.frompyfunc(my_fun_e, 1, 3)

but get:

my_fun(my_ar)
(array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object))

and I've tried:

my_fun = numpy.frompyfunc(my_fun_e, 1, 1)

but get:

>>> my_fun(test)
(array([[0 0 0], [5 5 5], [10 10 10]], dtype=object), array([None, None, None], dtype=object), array([None, None, None], dtype=object))

Update: The problem really seems to be that I'm getting an array of array objects back, not a higher-dimensional array. My result stops working like a normal array.

Any thoughts on how I could make this work?

Thanks!

    Post Made Community Wiki by Community
show/hide this revision's text 1