Azzera filtri
Azzera filtri

Extract Values from the vector

2 visualizzazioni (ultimi 30 giorni)
M@lik Ali
M@lik Ali il 3 Set 2012
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.

Risposte (2)

Andrei Bobrov
Andrei Bobrov il 3 Set 2012
new_vector_from_a = a(a < 1 | a > 10);

M@lik Ali
M@lik Ali il 3 Set 2012
Thanks a lot it works,
Hi all
I have matrix with 999*10
actually i have 10 feature of 999 images. now what i want is i want to extract features of some images in new matrix like i need the new matrix of 4,5,6 and 7 images among 999 images. my new matrix should be of size 4*10.
How can i do this please help me.

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by