Form a matrix from a structure
3 次查看(过去 30 天)
显示 更早的评论
I have a 32*32 data structure. There are 1*1 structures in each of those 32*32 cells. However, i would like to extract all the binary data in the substructures and align them into one matrix. any one with some code that could help me do this please? Thank you
2 个评论
采纳的回答
Azzi Abdelmalek
2013-2-4
编辑:Azzi Abdelmalek
2013-2-4
Try
x(1,1).data=1;
x(1,2).data=[2 1];
x(2,1).data=rand(2);
x(2,2).data=[1;2];
out=struct2cell(x);
out(:)
4 个评论
Azzi Abdelmalek
2013-2-4
编辑:Azzi Abdelmalek
2013-2-4
out=struct2cell(x); % x is your struct variable
out(:)
What did you get?
更多回答(2 个)
Cedric
2013-2-4
If it is a cell array and cells contents have matching sizes:
>> doc cell2mat
4 个评论
Cedric
2013-2-4
编辑:Cedric
2013-2-4
Seems that you edited the question since I posted my answer. Seeing your answer to Azzi, you should just look at what are these variables that you are dealing with, e.g.
>> S = load('Compressed.dat') ;
S =
ans: {...}
data: {...}
>> class(S)
ans =
struct
>> class(S.data)
ans =
cell
>> size(S.data)
ans =
32 32
... doing that would help you truly understand the structure of the objects that you are dealing with, which will allow you to index them correctly.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!