Find index of array of cell

2 visualizzazioni (ultimi 30 giorni)
Farshid Daryabor
Farshid Daryabor il 17 Feb 2020
Modificato: Adam Danz il 17 Feb 2020
I really thanks tell me how can I find index of arrays assigned with 'F' and then delete the files corresponding to 'F' .
Thanks

Risposta accettata

Adam Danz
Adam Danz il 17 Feb 2020
Modificato: Adam Danz il 17 Feb 2020
If you want to delete the file names from the files array....
load('example.mat')
select = strcmp(out, 'F');
files(select) = [];
% or
% files(select) = {''}; % replace with empty

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by