Horizontally concatinating the fields of a structure with different dimensions.

조회 수: 4 (최근 30일)
i have a [1*1] structure containing 30 fields,
variable00,,...... variable29 with size [8193*2, 8192*2....8189*2] (random size every time)
I want to concatinate all the data in one field 'allvariable' but with the dimension missmatch i am unable to do that.
Also is there a way to concatinate only the first rows?
One random data picture is attached.2019-01-14_11h15_31.png

채택된 답변

Stephen23
Stephen23 2019년 1월 14일
편집: Stephen23 2019년 1월 14일
The different number of rows does not prevent them from being concatenated vertically:
>> S.f1 = [0,1;2,3;4,5];
>> S.f2 = [6,7;8,9];
>> C = struct2cell(S);
>> vertcat(C{:})
ans =
0 1
2 3
4 5
6 7
8 9
If you want to concatenate horizontally either use indexing:
>> D = cellfun(@(m)m(1:2,:),C,'uni',0);
>> horzcat(D{:})
ans =
0 1 6 7
2 3 8 9
or download catpad. from FEX:
>> catpad(2,C{:})
ans =
0 1 6 7
2 3 8 9
4 5 NaN NaN
  댓글 수: 2
ARN
ARN 2019년 1월 14일
Thanks! desired answer is what i get from catpad but with zeros instead of NaN in the answer which i got from following.
g(isnan(g))=0;
Isn't there any simple way to do that? Lets say i am not allowed to use catpad.
Stephen23
Stephen23 2019년 1월 14일
"Isn't there any simple way to do that? Lets say i am not allowed to use catpad."
The simple solution is to use catpad (it already exists, it works, it only requires one/two lines for you to get what you need). If you really do not want to use catpad then you could certainly use a few loops (or a few cellfun calls) to get the size of each matrix, then pad them as required, and then afterwards concatenate together. You would have to decide if that is "simple" or not.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by