Sort values in a cell array

3 vues (au cours des 30 derniers jours)
Sergio Rojas Blanco
Sergio Rojas Blanco le 21 Juil 2022
Modifié(e) : Bruno Luong le 21 Juil 2022
Hi guys, It's amazing how much some people know.
Well, this is my case:
I have a vector. Suppose this:
A=[90,45,38,51];
To this vector correspond another vector. Some values may be duplicates but it is not known how many.
B=[8,1,8,3]
So, I want to sort them and set the initial values in a cell array. The result would be this:
C={[45],[51],[90,38] }
I wish I didn't have to use loop.
Thank you all for your help, especially helping me with this :)

Réponse acceptée

Stephen23
Stephen23 le 21 Juil 2022
Modifié(e) : Stephen23 le 21 Juil 2022
A = [90,45,38,51];
B = [8,1,8,3];
[~,~,X] = unique(B);
C = accumarray(X,A(:),[],@(v){v})
C = 3×1 cell array
{[ 45]} {[ 51]} {2×1 double}
Checking the content of C:
C{:}
ans = 45
ans = 51
ans = 2×1
90 38
  1 commentaire
Sergio Rojas Blanco
Sergio Rojas Blanco le 21 Juil 2022
Stephen23, thank you very much. How fast!

Connectez-vous pour commenter.

Plus de réponses (1)

Bruno Luong
Bruno Luong le 21 Juil 2022
Modifié(e) : Bruno Luong le 21 Juil 2022
Another method
B=[8,1,8,3];
A=[90,45,38,51];
[Bs,i]=sort(B);
mat2cell(A(i),1,diff(find([true,diff(Bs)>0,true])))
ans = 1×3 cell array
{[45]} {[51]} {[90 38]}
% or more compact
mat2cell(A(i),1,diff(find([1,diff(Bs),1])))
ans = 1×3 cell array
{[45]} {[51]} {[90 38]}
  1 commentaire
Sergio Rojas Blanco
Sergio Rojas Blanco le 21 Juil 2022
Bruno Luong, very good. Thank you

Connectez-vous pour commenter.

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by