Borrar filtros
Borrar filtros

Test value equality within a range of values

1 visualización (últimos 30 días)
Vishan Gupta
Vishan Gupta el 29 de Sept. de 2018
Editada: Bruno Luong el 29 de Sept. de 2018
I have a=0.3, I have a vector jki=0:0.00065:0.65 (its a 1x1001 vector). I want to compare each value of jki to a, if that is true, display something. I've tried searching online but don't really understand still how to do it. This is what my guess would be for the code, but it doesn't work:
for k=1:size(jki)
if jki(k)==a
disp('something');
end
end

Respuestas (2)

Adam Danz
Adam Danz el 29 de Sept. de 2018
If your goal is to do something if a is in jki
if ismember(a,jki)
DoSomething
end
  2 comentarios
Vishan Gupta
Vishan Gupta el 29 de Sept. de 2018
Doesn't work because a is 0.3, the closest value to 0.3 IN jki is 0.2996 and 0.3003, the vector never lands on exactly 0.300 which is the problem I am having.
Walter Roberson
Walter Roberson el 29 de Sept. de 2018
I do not see the problem? You say, "I want to compare each value of jki to a" and you show an equality comparison in your sample code. If 0.3 is not in jki then 0.3 is not in jki.
Is the question to determine where in jki that a falls if you treat the entries of jki to be edges? If so then see the first output of discretize() or see the second output of histc() or the third output of histcounts()

Iniciar sesión para comentar.


Bruno Luong
Bruno Luong el 29 de Sept. de 2018
Editada: Bruno Luong el 29 de Sept. de 2018
Is this is what you want?
jki = 0:0.00065:0.65;
a = 0.3;
[~,loc] = histc(a,jki);
fprintf('%g is in the range (%g,%g)\n', a, jki(loc+[0 1]))

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by