how to select last elements of a row vector?
43 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all,
I have a row vector:
j = [593,660,725,790,854,919,984,1050,1118,1184, 1300, 1400, 1500, 1600]
I want to select last 5 elements.
j_last5 = j(1,end-5);
gives me 1118
but I want : j_last 5 = [1184, 1300, 1400, 1500, 1600]
Can you help please?
0 Commenti
Risposta accettata
Più risposte (1)
Davide Masiello
il 8 Mar 2022
j = [593,660,725,790,854,919,984,1050,1118,1184, 1300, 1400, 1500, 1600];
j_last5 = j(end-4:end)
j_last5 =
1184 1300 1400 1500 1600
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!