Concatenating doubles in cell arrays

3 vues (au cours des 30 derniers jours)
MiauMiau
MiauMiau le 24 Jan 2017
Commenté : Stephen23 le 24 Jan 2017
Hi
I have two cell arrays, each of them 1x25. Each contains a 2x1 double array in the first 24 elements, and a 60x1 double array in the 25. I want to combine the two such that a new cell array would have a format of 1x25 as well, containing a 4x1 double array (concatenating of the original double arrays) in the first 24 elements, and a 120x1 double array in its 25th element - how can I do that? Thanks

Réponse acceptée

Stephen23
Stephen23 le 24 Jan 2017
Modifié(e) : Stephen23 le 24 Jan 2017
Where A and B are the input cell arrays:
cellfun(@(a,b)[a;b],A,B,'UniformOutput',false)
Or even
cellfun(@vertcat,A,B,'UniformOutput',false)
  2 commentaires
MiauMiau
MiauMiau le 24 Jan 2017
wow thanks. Is there a way to have the values in the double arrays order from min to max? thanks thanks thanks
Stephen23
Stephen23 le 24 Jan 2017
cellfun(@(a,b)sort([a;b]),A,B,'UniformOutput',false)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Operators and Elementary Operations 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