Using the find() function to find only the first number greater than the given number.

17 visualizzazioni (ultimi 30 giorni)
'cell' contains numbers
I want to use the find fucntion like this >>> " find(cell>number) " but i want it to only show the first number that is greater then 'number' and not the rest of the cell.

Risposte (1)

the cyclist
the cyclist il 31 Mag 2020
Here is one way:
% The threshold number
number = 2;
% Your cell. (Don't name it "cell", which is a MATLAB keyword.)
C = {[1 2]; [2 3]; [4 5]};
% For each cell, the first number greater than the threshold. If none the cell has an empty array.
N = cellfun(@(x)x(find(x>number,1)),C,'UniformOutput',false)
  3 Commenti
Walter Roberson
Walter Roberson il 31 Mag 2020
find(YourArray>number,1)
Note that this will proceed along columns, so for example,
cell = [
0 10
0 0
0 0
5 0]
then find(cell>3,1) would find the 5 rather than the 10
Cameron Tiegs
Cameron Tiegs il 31 Mag 2020
Modificato: Cameron Tiegs il 31 Mag 2020
Thanks for the answer. I used your idea and made this, which worked :)
Index = find(C>number,1);

Accedi per commentare.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by