Effacer les filtres
Effacer les filtres

how to find the index of the row

1 vue (au cours des 30 derniers jours)
Imner Renmi
Imner Renmi le 7 Juil 2016
Modifié(e) : Imner Renmi le 7 Juil 2016
Hi,
I want to get the row number in the following case. Say one has a 5 by 1 vector [1;2;3;4;5].
If I have the scalar '4.5' (which is not in that vector) then I know that 4.5 is between 4 and 5. What I want is to compare 4.5 with all the numbers in the vector. Then Matlab should be able to tell that 4.5 is between 4 and 5. My goal is to get the row number of the scalar '4'.
Consequently, if I have a scalar '3.5' then Matlab should be able to tell that 3.5 is between 3 and 4, and in this case I would like to obtain the row number of the scalar '3'
I just do not know how I could code this in Matlab.
Many thanks

Réponse acceptée

James Tursa
James Tursa le 7 Juil 2016
Modifié(e) : James Tursa le 7 Juil 2016
If you are looking for the closest value:
x = your vector
s = your scalar
[~,row] = min(abs(x-s));
If you are looking for the first number <= your scalar and x is sorted increasing:
row = find((x-s) >= 0,1);
If something else, please specify.
  3 commentaires
James Tursa
James Tursa le 7 Juil 2016
Modifié(e) : James Tursa le 7 Juil 2016
Does the posted code ( row and row+1 ) do what you want? Or Azzi's or Andrei's Answers?
Imner Renmi
Imner Renmi le 7 Juil 2016
Modifié(e) : Imner Renmi le 7 Juil 2016
Yes, The first code does seem to do what I want. If something strange occurs I'll just post a new question. Thanks a lot for your help.

Connectez-vous pour commenter.

Plus de réponses (2)

Azzi Abdelmalek
Azzi Abdelmalek le 7 Juil 2016
Modifié(e) : Azzi Abdelmalek le 7 Juil 2016
v=[8;6;1;2;3;7;5;4]
m=3.5
mv=[m ;v]
[ii,jj]=sort(mv)
idx=find(jj==1)
% m is between a1 and a2,
idx1=jj(idx-1)
idx2=jj(idx+1)
a1=mv(idx1)
a2=mv(idx2)

Andrei Bobrov
Andrei Bobrov le 7 Juil 2016
p = [1;2;3;4;5]
z = [3.5,4.5]
[~,out] = histc(z,p)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by