Adding a dimension to every element of a numpy.array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:51:36Z http://stackoverflow.com/feeds/question/310459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/310459/adding-a-dimension-to-every-element-of-a-numpy-array 2 Adding a dimension to every element of a numpy.array Nate 2008-11-21T22:44:41Z 2008-11-25T21:12:20Z <p>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:</p> <pre><code>&gt;&gt;&gt; my_ar = numpy.array((0,5,10)) [0, 5, 10] &gt;&gt;&gt; transformed = my_fun(my_ar) # In reality, my_fun() would do something more useful array([ [ 0, 0, 0], [ 5, 10, 15], [10, 20, 30]]) &gt;&gt;&gt; transformed.shape (3, 3) </code></pre> <p>I've tried:</p> <pre><code>def my_fun_e(val): return numpy.array((val, val*2, val*3)) my_fun = numpy.frompyfunc(my_fun_e, 1, 3) </code></pre> <p>but get:</p> <pre><code>my_fun(my_ar) (array([[0 0 0], [ 5 10 15], [10 20 30]], dtype=object), array([None, None, None], dtype=object), array([None, None, None], dtype=object)) </code></pre> <p>and I've tried:</p> <pre><code>my_fun = numpy.frompyfunc(my_fun_e, 1, 1) </code></pre> <p>but get:</p> <pre><code>&gt;&gt;&gt; my_fun(my_ar) array([[0 0 0], [ 5 10 15], [10 20 30]], dtype=object) </code></pre> <p>This is close, but not quite right -- I get an array of objects, not an array of ints.</p> <p><b>Update 3!</b> OK. I've realized that my example was too simple beforehand -- I don't just want to replicate my data in a third dimension, I'd like to transform it at the same time. Maybe this is clearer?</p> http://stackoverflow.com/questions/310459/adding-a-dimension-to-every-element-of-a-numpy-array/310493#310493 0 Answer by Piotr Lesnicki for Adding a dimension to every element of a numpy.array Piotr Lesnicki 2008-11-21T22:59:33Z 2008-11-21T23:19:49Z <p>I propose:</p> <pre><code> numpy.resize(my_ar, (3,3)).transpose() </code></pre> <p>You can of course adapt the shape <code>(my_ar.shape[0],)*2</code> or whatever</p> http://stackoverflow.com/questions/310459/adding-a-dimension-to-every-element-of-a-numpy-array/310893#310893 0 Answer by Mr Fooz for Adding a dimension to every element of a numpy.array Mr Fooz 2008-11-22T05:03:33Z 2008-11-22T05:03:33Z <p>Does this do what you want:</p> <pre><code>tile(my_ar, (1,1,3)) </code></pre> http://stackoverflow.com/questions/310459/adding-a-dimension-to-every-element-of-a-numpy-array/313427#313427 1 Answer by Theran for Adding a dimension to every element of a numpy.array Theran 2008-11-24T04:45:11Z 2008-11-24T04:45:11Z <p>Does numpy.dstack do what you want? The first two indexes are the same as the original array, and the new third index is "depth".</p> <pre><code>&gt;&gt;&gt; import numpy as N &gt;&gt;&gt; a = N.array([[1,2,3],[4,5,6],[7,8,9]]) &gt;&gt;&gt; a array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) &gt;&gt;&gt; b = N.dstack((a,a,a)) &gt;&gt;&gt; b array([[[1, 1, 1], [2, 2, 2], [3, 3, 3]], [[4, 4, 4], [5, 5, 5], [6, 6, 6]], [[7, 7, 7], [8, 8, 8], [9, 9, 9]]]) &gt;&gt;&gt; b[1,1] array([5, 5, 5]) </code></pre> http://stackoverflow.com/questions/310459/adding-a-dimension-to-every-element-of-a-numpy-array/318869#318869 1 Answer by jimmyorr for Adding a dimension to every element of a numpy.array jimmyorr 2008-11-25T21:06:54Z 2008-11-25T21:12:20Z <p>Use map to apply your transformation function to each element in my_ar:</p> <pre><code>import numpy my_ar = numpy.array((0,5,10)) print my_ar transformed = numpy.array(map(lambda x:numpy.array((x,x*2,x*3)), my_ar)) print transformed print transformed.shape </code></pre>