breakpoints

1 visualizzazione (ultimi 30 giorni)
joseph Frank
joseph Frank il 11 Giu 2011
Hi,
I have a long matrix of breakpoints: for example, 0.19 0.49 0.69 0.93 1.69
is there an easy function to determine if I have a value of 0.55 for example that this value would fall under the third category since it is between 0.49 and 0.69?

Risposta accettata

Andrew Newell
Andrew Newell il 11 Giu 2011
Assuming your breakpoints are sorted (I'll call them breakpoints), you could do something like this:
x = 0.55;
find(breakpoints<x,1,'last')

Più risposte (1)

Walter Roberson
Walter Roberson il 11 Giu 2011
[v, idx] = histc(x, [-inf breakpoints]);
then the value you want is idx

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by