How to combine two one dimensional cell arrays into one two-dimensional cell array?

10 vues (au cours des 30 derniers jours)
Hello everyone,
I'm trying to combine two (1x20) cell arrays called semVector and onsetVectors (same dimensions), each containing n x 1 sized numerical array into one (1x20) cell array that would now include values from both cell arrays and be of size n x 2.
For example, the created variable bothVectors would be of size 1 x 20 and bothVectors{1,1} would have two columns (11308 x 2), the same as bothVectors{1,2} = (11550 x 2) etc.
Somehow everything I've done so far just concatenates them into either 2 x 1 cell or 1 x 40 cell.
Any help please?

Réponse acceptée

Stephen23
Stephen23 le 18 Juil 2022
Where A and B are your cell arrays:
C = cellfun(@horzcat,A,B,'uni',0)

Plus de réponses (0)

Catégories

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