How to import data from excel file as structure into Matlab?
13 ビュー (過去 30 日間)
古いコメントを表示
Jannis Holtkoetter
2020 年 10 月 29 日
編集済み: Walter Roberson
2022 年 4 月 19 日
Hello, I have a relatively straight forward problem:
I have an excel sheet with two columns. The first column contains names and the second column contains numeric values. How can I import this file as a struct, so that I can access the values simply by their name?
2 件のコメント
採用された回答
Walter Roberson
2020 年 10 月 30 日
T = readtable(TheFileName);
TC = table2cell(T);
TS = cell2struct(TC(:,2), TC(:,1), 1);
TS will now be a cell with field names according to the first column of the file and numeric value according to the second column of the file.
4 件のコメント
vishal kulkarni
2022 年 4 月 19 日
If column has special charcater in it, it fails.
Like,
Param1.Field1 -> this will fail
Walter Roberson
2022 年 4 月 19 日
編集済み: Walter Roberson
2022 年 4 月 19 日
User indicated that the second columns are all numeric scalars.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!