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.
私は G=cell(3,1) を持っています
100 | 500たとえば、各セルに2つの値を保存しています。G(1)たとえば、値を出力しようとすると 、次のようになります。
100 | 500
G(1)
ans = [2x1 double]
ではなく実際のセルの内容を表示するにはどうすればよい[2x1 double]ですか?
[2x1 double]
cell2mat(G(1))
これで問題が解決するはずです。cell2mat(G) を使用することもでき、G のすべての行列を連結します (ただし、G のすべての要素は同じサイズでなければなりません)。
G{1}最初のセルの内容が表示されます。コマンドreshape([G{:}]',[],length(G))'は、セル全体の内容を提供します。
G{1}
reshape([G{:}]',[],length(G))'