keep few images and delete the rest in a folder

2 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2022 年 8 月 4 日
編集済み: Elysi Cochin 2022 年 8 月 4 日
Suppose I have 10 images, and i have saved all the pathname and filename in a variable all_files
I have a vector b = [ 2 4 6 ];
Now I want to keep only these images and delete all the other 7 images
How to keep those images and delete the rest?

採用された回答

Walter Roberson
Walter Roberson 2022 年 8 月 4 日
dels = setdiff(1:length(all_files), b);
arrayfun(@(idx)delete(all_files{idx}), dels);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImport, Export, and Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by