Info
この質問は閉じられています。 編集または回答するには再度開いてください。
write a structure into the excel file not writing the structure contents
1 回表示 (過去 30 日間)
古いコメントを表示
I use
struct2table(strucutre name,'AsArray',1)
to convert the strctrue to the table and then using writetable to write it on the excel file.
It does the job but not include the contents of the sturcture fields in the excel file.The output excel file is this:
the text in the first row are field names. The content is not included.
Any idea?
0 件のコメント
回答 (1 件)
Mehmed Saad
2020 年 4 月 16 日
x.full_100 = rand(10,1);
x.cor_thre = rand(10,1);
x.full_65 = rand(10,1);
x.rhib = rand(10,1);
T= struct2table(x);
writetable(T,'va.xlsx')
2 件のコメント
Mehmed Saad
2020 年 4 月 17 日
- all the variables are column vector
- i didn't use 'AsArray'
- i get this excel file after runing code
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!