the way find the specific data select

1 view (last 30 days)
ahahah ah
ahahah ah on 1 Jun 2021
Commented: KSSV on 1 Jun 2021
i have a data sheet and just want specific data
and the data number is arithmetic sequenc
how can i select?
this is my code
data=load('aa.txt');
i=25
for
i=i+62
end
A=data(i,:);

Answers (1)

KSSV
KSSV on 1 Jun 2021
Read about MATLAB indexing an array. If you want data from 25 to 100, just use:
iwant = data(25:100,:) ;
If you are looking to pick on some criteria, read about inequalitites. You can get indices using >, <, ==
  2 Comments
ahahah ah
ahahah ah on 1 Jun 2021
thanks you for answering but i want specific data not contiunous. like No.25 and No.87 and No.149 and so on,,, do i make a zeros array and insert?
KSSV
KSSV on 1 Jun 2021
Make the indices into an array and extract.
idx = [25 87 149];
data = data(idx, :)

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!