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 が初めてです。私はこのコードを持っています:
g = cell(2,3); g{1,2} = struct('name','joni'); g{2,2} = cell(3,3) g(1,2)
回答に「joni」を表示したいのですが、このコードでは しか表示されません[1x1 struct]。
[1x1 struct]
ところで、私はすでにこのコードを試しました:
g(1,2).name
結果はエラーです。
セルの内容を参照するには、括弧の代わりに中括弧を使用します。
g{1,2}.name