convert array vector in matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
D=Sis(i).dailyprof;
for i=1:width(Sis)
D(:,i)=Sis(i).dailyprof;
end
an i get the same result avoid loop loop? i try to use reshape but i can't
0 Kommentare
Akzeptierte Antwort
DGM
am 24 Jun. 2023
Consider the example:
% a struct array with a field of column vectors
S = struct('field1',(1:10).');
S = repmat(S,10,1);
D = horzcat(S.field1) % concatenate all column vectors into one matrix
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numeric Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!