Effacer les filtres
Effacer les filtres

How can I remove successive repeated numbers (column wise) from a matrix?

1 vue (au cours des 30 derniers jours)
Viswanath V
Viswanath V le 6 Déc 2020
Commenté : Ameer Hamza le 6 Déc 2020
For example If I have a matrix like this
A = [11 35 57 45 94;
26 45 69 45 86;
58 45 39 96 35;
87 59 64 56 45]
The output should be a column vector (i have just showed transpose of it)
[11 26 58 87 35 45 59 57 69 39 64 45 96 56 94 86 35 45]'
I have tried to use unique() function but, the output it gives is
[11 26 58 87 35 45 59 57 69 39 64 96 56 94 86]'

Réponse acceptée

Ameer Hamza
Ameer Hamza le 6 Déc 2020
Modifié(e) : Ameer Hamza le 6 Déc 2020
Easy peasy
A = [11 35 57 45 94;
26 45 69 45 86;
58 45 39 96 35;
87 59 64 56 45]
B = A(:);
or
B = reshape(A, [], 1)
  6 commentaires
Viswanath V
Viswanath V le 6 Déc 2020
Oh, I am extremely sorry! I had made a mstake in my code.
Thank you very much.
Ameer Hamza
Ameer Hamza le 6 Déc 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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