Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のMatlabコードに似たPythonで配列のリストを生成しようとしています:
for(t=1:Nmax) thisCell{t} = zeros(i,j,k) end
誰かが方法を知っていますか?
リスト内包表記と numpy を使用できます。
thisCell = [ numpy.zeros(shape=(i,j,k)) for t in range(1, Nmax) ]