Azzera filtri
Azzera filtri

determing if number is in row of matrix

1 visualizzazione (ultimi 30 giorni)
Filipa Cardoso
Filipa Cardoso il 18 Apr 2018
Risposto: KSSV il 18 Apr 2018
I have a matrix that represents an interval and i also have a number (x). the first column of the matrix represents the beginning of the interval and the second one represents the end. my goal is to determine if the x is between any of the numbers of the matrix. how can i do that?
matrix=[100 130;150 230; 250 270; 275 285; 290 315]
x= 225

Risposta accettata

KSSV
KSSV il 18 Apr 2018
matrix=[100 130;150 230; 250 270; 275 285; 290 315] 
x= 225 ;
idx = matrix(:,1)<=x & matrix(:,2)>=x 
iwant = matrix(idx,:)

Più risposte (0)

Categorie

Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by