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.

回答(1 个)

Dillon
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)
indexing = 1×11
10 11 12 13 14 15 16 17 18 19 20
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by