interpretation of result dashboard
이전 댓글 표시
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
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'};
- Use the 'setdiff' function to identify the unchecked files. For more information on this function, refer to this documentation: https://www.mathworks.com/help/matlab/ref/double.setdiff.html .
notCheckedFiles = setdiff(allFiles, checkedFiles);
disp(notCheckedFiles);
카테고리
도움말 센터 및 File Exchange에서 Model and Code Testing Metrics에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!