Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
editing a variable
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a 1x50 structured array. However, there is only values in the last 10 cells.
Is it possible to turn this into a 1x10 structured array and how?
0 comentarios
Respuestas (3)
Rick Rosson
el 6 de Ag. de 2011
Please try:
Y = X(41:50);
OR:
Y = X(end-9:end);
HTH.
Rick
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!