#author("2018-05-02T03:17:26+09:00","default:Miyashita","Miyashita")
#author("2018-07-25T21:18:10+09:00","default:Miyashita","Miyashita")
*構造体配列 [#y1a469a7]
**構造体配列の作成 [#w87b9efc]
(m x n)の構造体配列を作成するのは,下記のように実行する.
 A = struct('hoge',cell(m,n));
#codeprettify(lang-matlab){{
A = struct('hoge',cell(m,n));
}}
cellでないとsize(A)が (m x n)にならない.onesやzerosでは(1 x 1)の中に配列が格納されてしまう.~
hogeの部分は適当に(使いそうな)ものを入れる.

Front page   Edit Diff Attach Copy Rename Reload   New List of pages Search Recent changes   Help   RSS of recent changes