Extract Values from the vector
Mostrar comentarios más antiguos
Hi all
i have a vector like a=[ 4 5 10 3 7 8 11 15 2 19 20 6] now i want a new vector from a but new vector should not contain the values from 1-10; there must be the values of a only which are greater then 10. please help me.
Respuestas (2)
Andrei Bobrov
el 3 de Sept. de 2012
new_vector_from_a = a(a < 1 | a > 10);
M@lik Ali
el 3 de Sept. de 2012
0 votos
Categorías
Más información sobre Image Category Classification 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!