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 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Dillon
2025-4-23
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!