structured array help

1 次查看(过去 30 天)
James
James 2011-8-21
I have a 2x100 structured array
and I want to store and export the values in the 2nd row into Excel. How can I do this?
  10 个评论
Fangjun Jiang
Fangjun Jiang 2011-8-21
Please accept some of your questions. I believe they are answered. It's a conclude of the post as well as acknowledging that others did help to solve your problem.
Oleg Komarov
Oleg Komarov 2011-8-21
I stopped answering this poster since he never shows:
- any sign of acknowledgment;
- improvement in the formulation of his questions
- understanding of the fact that an accepted answer is a reference/potential answer for other users as well.

请先登录,再进行评论。

回答(1 个)

Fangjun Jiang
Fangjun Jiang 2011-8-21
%example data
a(2,9).field1='text'
a(2,9).field2=rand;
%code
prop=fieldnames(a);
N_prop=length(prop);
mat=cell(N_prop,size(a,2));
for k=1:N_prop
[mat{k,:}]=deal(a(2,:).(prop{k}));
end
xlswrite('test.xls',mat);
%if the data has only one field called .cdata
mat=cell(1,size(a,2))
[mat{1,:}]=deal(a(2,:).cdata);
xlswrite('test.xls',mat);

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by