Extract headers from CSV and add to app.Items

6 ビュー (過去 30 日間)
LabRat
LabRat 2022 年 7 月 24 日
コメント済み: Walter Roberson 2022 年 7 月 27 日
I would like to take the first row of a csv file (headers) and add those to a dropdown menu item. I tried something like this:
bud_serials = readtable(annotation);
header = bud_serials(1:1, :)
app.SelectTestID.Items = {header};
I get an error: "'Items' must be a 1-D cell array of character vectors or a string array."

採用された回答

Walter Roberson
Walter Roberson 2022 年 7 月 24 日
編集済み: Walter Roberson 2022 年 7 月 24 日
header = bud_serials.Properties.VariableNames;
app.SelectTestID.Items = header;
  4 件のコメント
LabRat
LabRat 2022 年 7 月 27 日
Is there a way to automatically take as many header columns as is available? Each csv file will have a different number of header columns.
Walter Roberson
Walter Roberson 2022 年 7 月 27 日
app.SelectTestID.Items = header(2:end);

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by