Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

editing a variable

5 visualizzazioni (ultimi 30 giorni)
James
James il 6 Ago 2011
Chiuso: MATLAB Answer Bot il 20 Ago 2021
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?

Risposte (3)

Rick Rosson
Rick Rosson il 6 Ago 2011
Please try:
Y = X(41:50);
OR:
Y = X(end-9:end);
HTH.
Rick

Fangjun Jiang
Fangjun Jiang il 6 Ago 2011
Or X(1:end-10)=[]

James
James il 6 Ago 2011
Thanks all!
  1 Commento
Oleg Komarov
Oleg Komarov il 6 Ago 2011
Please accept the answer you feel best answered your needs.

Questa domanda è chiusa.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by