Get both values and indices

4 Ansichten (letzte 30 Tage)
Md. Al-Imran Abir
Md. Al-Imran Abir am 3 Dez. 2022
Beantwortet: Dyuman Joshi am 3 Dez. 2022
I am trying to get the indices and values from a vector based on a condition. I used find for that but the values it returning are logical values. How can I get actual values? An example is:
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
[row, ~, val] = find(X>0 & X<6)
row = 5×1
1 2 3 6 8
val = 5×1 logical array
1 1 1 1 1
I want val to have 4 5 1 3 1

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 3 Dez. 2022
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
row = find(X>0 & X<6)
row = 5×1
1 2 3 6 8
val = X(row)
val = 5×1
4 5 1 3 1

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by