Outputting how far down a set of data a set of numbers are in a large data set

조회 수: 2 (최근 30일)
Hi everyone,
Could I get some help on this, I have a large data set of a random set of data, 100x7 in a identity called v, I want to find all the numbers which are equal to or less than 2 in this set, but i dont want it to outut the value of these numbers, but to output the row on which those values are found on. At the moment i get answers ranging between 1-700 using the find function within matlab. Where I want the outputs to only be ranging from 1-100, as there is in essence 100 rows that these values can be found.
In short I want to find a program which outputs the row number which numbers only suiting my conditions lie on, as opposed to the position they fall in, for a data set of 700 numbers. Preferably I want the function to include a loop/if condition if possible
Many thanks,
Ethan

채택된 답변

Kelly Kearney
Kelly Kearney 2020년 11월 10일
If you supply 2 outputs to find, it will return the row and column indices corresponding to each true element:
[rowidx, colidx] = find(data < 2);
  댓글 수: 2
Et.B200
Et.B200 2020년 11월 10일
편집: Et.B200 2020년 11월 10일
Thats brill, but what if you just wanted the rowidx to be set to a element and outputted? Also how would you remove any repeat rowidx values if they appear more than once?
Kelly Kearney
Kelly Kearney 2020년 11월 10일
Take a look at the unique function to remove repeats. Not quite sure what you mean by the other part of your question.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by