editing a variable
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
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?
Antworten (3)
Rick Rosson
am 6 Aug. 2011
Please try:
Y = X(41:50);
OR:
Y = X(end-9:end);
HTH.
Rick
Fangjun Jiang
am 6 Aug. 2011
0 Stimmen
Or X(1:end-10)=[]
James
am 6 Aug. 2011
0 Stimmen
1 Kommentar
Oleg Komarov
am 6 Aug. 2011
Please accept the answer you feel best answered your needs.
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!