How to Expand an Existing Structure Array?

13 visualizaciones (últimos 30 días)
Rightia Rollmann
Rightia Rollmann el 4 de Mzo. de 2017
Respondida: Walter Roberson el 4 de Mzo. de 2017
As a simple example, I create the struct B with one field:
B.D = 1;
How do I set parent struct A for the above-mentioned struct B?
A.B.D
How do I set a field between B and D?
B.C.D

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Mzo. de 2017
"How do I set parent struct A for the above-mentioned struct B?"
A.B = B;
"How do I set a field between B and D?"
temp = B.D;
B = rmfield(B, 'D');
B.C.D = temp;

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by