interpretation of result dashboard

1 回表示 (過去 30 日間)
Herr
Herr 2023 年 1 月 25 日
回答済み: Tejas 2024 年 11 月 14 日
Hi all,
in the result dashboard of my analysis only 51% of my files are checked, how can I find out which files are not checked?
Thanks

回答 (1 件)

Tejas
Tejas 2024 年 11 月 14 日
Hello Herr,
It sounds like you are trying to find out which files have not been checked yet. To achieve this, follow these steps:
  • Assuming you already have a list of all files and a list of checked files.
allFiles = {'file1.txt', 'file2.txt', 'file3.txt', 'file4.txt', 'file5.txt'};
checkedFiles = {'file1.txt', 'file3.txt', 'file5.txt'};
notCheckedFiles = setdiff(allFiles, checkedFiles);
disp(notCheckedFiles);

カテゴリ

Help Center および File ExchangeText Files についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by