Effacer les filtres
Effacer les filtres

Find elements of a vector

2 vues (au cours des 30 derniers jours)
Tom
Tom le 12 Fév 2014
Commenté : Azzi Abdelmalek le 12 Fév 2014
If I have a vector, e.g.
A = [ 2 8 6 5 3 3 6 5 5 3 4 1 2 9 6]
How do I return a vector which just gives single examples of the elements of A, e.g.
B = [1 2 3 5 6 8 9]
Kind regards,
Tom

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 12 Fév 2014
Modifié(e) : Azzi Abdelmalek le 12 Fév 2014
B=unique(A)
You can make the result without sorting
B=unique(A,'stable')
  6 commentaires
Tom
Tom le 12 Fév 2014
Sorry.
If I have a vector e.g.: B = [1 2 3 5 6 8 9]
I want to look through the elements of B
i.e. I tried:
for j = B
do something
end
But this doesn't seem to work...
Azzi Abdelmalek
Azzi Abdelmalek le 12 Fév 2014
That's depends on what (do something) is

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by