How do I extract an array from struct?

11 visualizzazioni (ultimi 30 giorni)
Jacopo Zini
Jacopo Zini il 18 Giu 2022
Hi all,
I have struct (X) which contains differe elemets including duoble and cell. I would like to extract one array from a cell (xaxis) which is 2x2x2.
I have tried with the function vertcat as following:
MyMatrix = vertcat(X.xaxis)
and I obrain a matrix 2x2x2 cell which contains the following elements:
val(:,:,1) =
{[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 … ]} {'A}
{[ 200.5358 201.1543 201.7728 202.6154 … ]} {'B' }
val(:,:,2) =
{[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 … ]} {'A'}
{[ 537.8697 537.8876 537.9055 537.9298 … ]} {'C' }
I would like to extract B, do you have any suggestion?
I have tried with: Shift=cell2mat(MyMatrix) but i got "Error using cell2mat (line 45) All contents of the input cell array must be of the same data type."
Thanks for your help!
  3 Commenti
Chris Burschyk
Chris Burschyk il 18 Giu 2022
I guess you need to index with curly brackets. X{2,1,1} would be cell with the values for B.
Rahin Vadsariya
Rahin Vadsariya il 5 Lug 2022
Hello,
Can you please provide a sample struct and what you are trying to extract from that struct?

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Structures in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by