Effacer les filtres
Effacer les filtres

Concatenate two cell arrays in matlab

1 vue (au cours des 30 derniers jours)
Hina Iqbal
Hina Iqbal le 12 Mar 2015
Commenté : Hina Iqbal le 12 Mar 2015
I have array as
A=cell(4,1);
A=[1;2;3;4];
i have to increase the size of A. i.e to make it 8 for example. when i pad the zeros or simply vertically concatenate the two array(one is A and other is simply e.g B=cell(4,1))
I get the answer like
[4x1 double]
[]
[]
[]
[]
whereas i need output like
1
2
3
4
[]
[]
[]
[]
or if padding zeros then
1
2
3
4
0
0
0
0
plz help me as i need this urgent.. i have tried alot..it works when A matrix is simply an array not a cell array..but in my case i need this for cell array|
  1 commentaire
Jan
Jan le 12 Mar 2015
Please post the code you use to create the shown data. It is not clear if A is a cell or a matrix.

Connectez-vous pour commenter.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 12 Mar 2015
Modifié(e) : Andrei Bobrov le 12 Mar 2015
A = cell(8,1);
A(1:4) = num2cell((1:4)');
numeric array
A = zeros(8,1);
A(1:4) = (1:4)';
  1 commentaire
Hina Iqbal
Hina Iqbal le 12 Mar 2015
Thank you so much:-)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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