Borrar filtros
Borrar filtros

Add a vector to a struct array

20 visualizaciones (últimos 30 días)
Frank
Frank el 21 de Ag. de 2014
Editada: Sean de Wolski el 22 de Ag. de 2014
I have a struct array, say
a(1).b=1
a(2).b=1
a(1).c=1
a(2).c=1
and an vector, say
c=[1 2]
Now I want to add vector c to a, in order to obtain something like a.c
How can I do this without a for-loop? (actually the length of the struct is not 2, but thousands)

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 21 de Ag. de 2014
Editada: Sean de Wolski el 21 de Ag. de 2014
You could use a for-loop (which would be the easiest to understand) and may be the fastest. Or you could use comma-separated list expansion which is trickier.
a(1).b=1
a(2).b=1
a(1).c=1
a(2).c=1
c = [pi exp(1)];
c = num2cell(c)
[a(:).c] = c{:}
a.c
Frankly, I would recommend avoiding this structure altogether. Why not have a 1x1 struct with a field c which is a 1xn?
a.c = [1 2]
a.c(2)
  2 comentarios
Frank
Frank el 21 de Ag. de 2014
Thank you.
As for avoiding this structure: I recognized in the meantime, that there is more overhead when using the struct arrays. But the struct arrays are part of a major legacy Matlab program, and I have to live with it for the moment.
As far as I know it is good Matlab practise to avoid for-loops due to low speed, so I hoped there is a single command to shuffle vector data into struct arrays. But now it appears that it might not be possible.
Sean de Wolski
Sean de Wolski el 22 de Ag. de 2014
Editada: Sean de Wolski el 22 de Ag. de 2014
That's exactly what my first approach does! It uses comma separated list expansion (instead of a for-loop) on both the left and right hand side to distribute the elements.
Of course MATLAB is plenty fast with loops and has been for a while.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by