How to take the value of the array

I have Wj1 =
[3x12 double] [3x48 double] [3x192 double]
I want to have a matrix [3x252], I make A=[Wj1{1},Wj1{2},Wj1{3}] but i can't make with Wj1(i)
How I can create a matrix A=[Wj1{1},Wj1{2},...,Wj1{i},...,Wj1{n}]
Thanks a lot

 Réponse acceptée

Jan
Jan le 5 Juin 2013
A = [Wj1{:}];
Or equivalently:
A = cat(2, Wj1{:})

Plus de réponses (1)

Community Treasure Hunt

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

Start Hunting!

Translated by