possible to use logical indexing with an array argument ?

1 visualizzazione (ultimi 30 giorni)
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 Commento
Stephen23
Stephen23 il 17 Gen 2017
Modificato: Stephen23 il 17 Gen 2017
What is wrong with
i=1:15653;
label == i
?
What do you want to do with this?

Accedi per commentare.

Risposta accettata

John Chilleri
John Chilleri il 17 Gen 2017
Modificato: John Chilleri il 17 Gen 2017
Hello,
WhateverYouWant = (label == 1:15653);
Note: assuming label is also a 15653 length vector OR a scalar.
Hope this helps!

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by