possible to use logical indexing with an array argument ?

1 Ansicht (letzte 30 Tage)
RuiQi
RuiQi am 17 Jan. 2017
Kommentiert: John Chilleri am 18 Jan. 2017
is there a way I can convert this code
for i=1:15653
label == i
end
to a vectorized one ?
i=1:15653;
label == i
  1 Kommentar
Stephen23
Stephen23 am 17 Jan. 2017
Bearbeitet: Stephen23 am 17 Jan. 2017
What is wrong with
i=1:15653;
label == i
?
What do you want to do with this?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

John Chilleri
John Chilleri am 17 Jan. 2017
Bearbeitet: John Chilleri am 17 Jan. 2017
Hello,
WhateverYouWant = (label == 1:15653);
Note: assuming label is also a 15653 length vector OR a scalar.
Hope this helps!
  2 Kommentare
RuiQi
RuiQi am 18 Jan. 2017
Sorry I was sure it didnt work when I typed
la
label == i
earlier on
John Chilleri
John Chilleri am 18 Jan. 2017
No worries! Glad I could help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by