Hi, I'm new to matlab. I was just wondering how I list the last 10 names in the human activity data set where it says actnames?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
So when you write load humanactivity and press enter. Then write whos, it shows a few names such as featlabels, actnames and so on. For the act names how do i list the last 10 activites based on that.
0 Commenti
Risposte (1)
Dillon
il 23 Apr 2025
You can use the "end" keyword to access the last element of an array. Using "end - 10" will access 10 elements from the last element. Additionally, the ":" operator returns an array of first number to the second with default iterations of 1. You can use disp() to display :)
x = 1:20;
indexing = x(end-10:end)
0 Commenti
Vedere anche
Categorie
Scopri di più su Dates and Time 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!