标签: python matlab data-structures cell
我试图在python中生成一个类似于以下Matlab代码的数组列表:
for(t=1:Nmax) thisCell{t} = zeros(i,j,k) end
答案 0 :(得分:0)
你可以使用列表理解和numpy:
thisCell = [ numpy.zeros(shape=(i,j,k)) for t in range(1, Nmax) ]