How to delete every alternate rows?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Turbulence Analysis
am 5 Apr. 2024
Kommentiert: Aquatris
am 5 Apr. 2024
Hi,
In the attached array sz, I need to delete every alternate rows starting from first row, (e.g. 1, 3, 5, 7 etc). Could someone help?
1 Kommentar
Dyuman Joshi
am 5 Apr. 2024
You have been active here since 2020, I am really surprised that you had to ask for this.
Akzeptierte Antwort
Ayush Anand
am 5 Apr. 2024
Hi,
You can do
sz_new = sz(2:2:end, :);
This will do the job.
4 Kommentare
Aquatris
am 5 Apr. 2024
Alternatively you can also delete them from your current variable:
x = 1:10;
x % show x
x(1:2:end) = [];% delete odd idx values
x % show x after removing odd values
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Install Products finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!