vote up 0 vote down star

How to create 3 dimensions matrix in numpy , like matlab a(:,:,:) . I try to convert matlab code that create 3d matrix to python by use numpy.array and i don't know how to create 3d matrix/array in numpy

flag

73% accept rate

2 Answers

vote up 3 vote down check

In addition to unutbu's correct answer you might be interested in the Numpy for Matlab users guide.

link|flag
+1 for a very resource! – EOL Nov 8 at 14:43
thank you ,too, nikow :) – vernomcrp Nov 8 at 14:58
vote up 6 vote down
a=np.empty((2,3,5))

creates a 2x3x5 array. (There is also np.zeros if you want the values initialized.)

You can also reshape existing arrays:

a=np.arange(30).reshape(2,3,5)

np.arange(30) creates a 1-d array with values from 0..29. The reshape() method returns an array containing the same data with a new shape.

link|flag
Oh Great, Thank very much, ~unutbu :) – vernomcrp Nov 8 at 12:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.