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?
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Dillon
on 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 Comments
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!