How to (nicely) copy a structure array field into another

103 Ansichten (letzte 30 Tage)
Joan Vazquez
Joan Vazquez am 1 Sep. 2020
Bearbeitet: Joan Vazquez am 1 Sep. 2020
Based on several questions in this forum, the following piece of code works. But I wonder if there is a more 'elegant' or 'neat' way in Matlab ('matlabish', 'matlabonic'...?)
% S is a given structure (I definetely can't modify that)
S(1).name = [];
S(2).name = [];
% Nicely stored input data (I could parse this differently, but this is not the point)
data(1).name = 'A';
data(2).name = 'B';
% Is there a more straightforward way to achieve 'S.name = data.name' ?
names = {data.name};
[S.name] = names{:};
% Or a clean one liner that avoids using 'names' ?

Akzeptierte Antwort

Stephen23
Stephen23 am 1 Sep. 2020
Bearbeitet: Stephen23 am 1 Sep. 2020
Matlabcalifragilisticexpialidocious:
[S.name] = deal(data.name)
  1 Kommentar
Joan Vazquez
Joan Vazquez am 1 Sep. 2020
Lovely.
Matlab's marketing department needs to popularize a proper adjective :P

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by