Concatenate Cell array of doubles along rows
Afficher commentaires plus anciens
i have a cell array that looks like the following (4X2) in attached image

I want to concatenate adjacent values in rows
Réponse acceptée
Plus de réponses (1)
KSSV
le 5 Nov 2016
Let C be your cell array..
iwant{1} = [C{1,1} C{2,1}] ;
iwant{2} = [C{1,2} C{2,2}] ;
2 commentaires
Abdelrahman Abdeltawab
le 5 Nov 2016
KSSV
le 5 Nov 2016
You can put that into loop....not a big deal.
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!