Convert multiple struct to table

Hello everyone,
i want to convert the following struct into a table so every value is displayed, i think there are like 630 values per field.
I already tried struct2table and the following:
a = app.time_series
f = fieldnames(a)
for i = 1:length(f)
x_T = table(num2cell(getfield(a,f {i})));
x_T.Properties.VariableNames = {f{i}};
T = [T, x_T];
end
But everything i get is:
Can someone please help me?
Thanks a lot!!!

1 件のコメント

Chunru
Chunru 2022 年 4 月 22 日
It seems that the vaviable app.time_series is a structure of structure. Therefore you need to convert that structure of structure into double to form the table.
You can post your variable app.time_series as a .mat file attachment.

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeData Type Conversion についてさらに検索

質問済み:

2022 年 4 月 21 日

コメント済み:

2022 年 4 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by