structをcellに変換する方法について

6 vues (au cours des 30 derniers jours)
Koki Hashiguchi
Koki Hashiguchi le 18 Mai 2020
Commenté : Shunichi Kusano le 18 Mai 2020
1×21 struct 5フィールドのstruct構造体配列を、21×5のcell配列として取り出したい場合に
struct2cell関数を用いると5×1×21のcell配列に変換されてしまいます。
21×5のcell配列として取り出すにはどのようにしたら良いでしょうか。

Réponse acceptée

Shunichi Kusano
Shunichi Kusano le 18 Mai 2020
5x1x21のセル配列(以下A)をそのまま利用しまして、
newA = reshape(A, [5 21]).';
で21x5になります。reshapeで要素数1である2次元目を無視して5x21に。さらに.'で転置して、21x5にしています。
  2 commentaires
Koki Hashiguchi
Koki Hashiguchi le 18 Mai 2020
Kusano様
ご回答いただきありがとうございます。
reshapeで2次元目を無視する方法はとても勉強になりました。
Shunichi Kusano
Shunichi Kusano le 18 Mai 2020
すみません。セル配列には使えないと思い込んでいましたが、もっと簡単に書けるsqueeze関数というものがあります。
これを使って書きますと
newA = squeeze(A).';
で大丈夫です。これは要素数が1の次元を自動で削除してくれます。

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 構造体 dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!