How to store structure data into an array in loop?

5 visualizzazioni (ultimi 30 giorni)
Minu
Minu il 28 Mag 2013
Modificato: Stephen23 il 21 Giu 2018
I have a structure with many fields of different length.I want to store this structure data into an array in a loop.How to solve this issue.

Risposte (1)

Matt J
Matt J il 28 Mag 2013
As in the following example
>> s.a=1; s.b=[2 3]; %A struct
a: 1
b: [2 3]
>> C=struct2cell(s); [C{:}]
ans =
1 2 3
  2 Commenti
Loretta Laughrey
Loretta Laughrey il 21 Giu 2018
Modificato: Loretta Laughrey il 21 Giu 2018
What if I want an array of structures so that:
s(1) = struct(1,[2,3])
s(2) = struct(4,[5,6])
Stephen23
Stephen23 il 21 Giu 2018
Modificato: Stephen23 il 21 Giu 2018
@Loretta Laughrey: Neither struct(1,[2,3]) nor struct(4,[5,6]) are valid calls to struct, because the first input must be the fieldname. What output do you expect to get?

Accedi per commentare.

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