possible to use logical indexing with an array argument ?
Mostrar comentarios más antiguos
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 comentario
What is wrong with
i=1:15653;
label == i
?
What do you want to do with this?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Numeric Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!