How can i work with a set of column vector that has 365 rows. I want to find the mean between the 172 and 265 data only. Not all the mean.

1 view (last 30 days)
How can i work with a set of column vector that has 365 rows. I want to find the mean between the 172 and 265 data only. Not all the mean.

Accepted Answer

KSSV
KSSV on 29 Nov 2021
You extract your required data using indexing.
iwant = A(172:265,:) ; % extract array from 172 to 265 all the columns

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!