how to convert table with struct to excel sheet
3 ビュー (過去 30 日間)
古いコメントを表示
hussain abdelaziz
2021 年 4 月 8 日
コメント済み: hussain abdelaziz
2021 年 7 月 18 日
i need to know how to convert this table with struct to an excel files with all the data in ... please if you can help but the code to me ( i don't need file name )
0 件のコメント
採用された回答
Mohammad Sami
2021 年 4 月 8 日
Not really sure about what your data looks like. Assuming your structs are compatible, you can concatenate them together.
s = vertcat(result.bw{:});
s = struct2table(s);
writetable(s,'myexcel.xlsx');
4 件のコメント
Mohammad Sami
2021 年 4 月 10 日
Yes that can be done.
if true
n = cellfun(@length,result.bw);
f = repelem(result.fileName,n);
s = vertcat(result.bw{:});
s = struct2table(s);
s.fileName = f;
writetable(s,'myexcel.xlsx');
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!