check inside cell condition

2 views (last 30 days)
Venkat Ta
Venkat Ta on 7 Aug 2019
Commented: Venkat Ta on 8 Aug 2019
AppleDECB =
2×1 cell array
{'/Users/venkat/Desktop/ extract/Validation/V3 70/CURVES_initial'}
  • The AppleDECB cell made to receive directory if the directory has any files inside.
  • suppose no files, AppleDECB ={0};
  • Now I have to make condition if AppleDECB 0 no process, else I have to use the directory path to process.
  • How can i make if else condition or another way?Screen Shot 2019-08-08 at 1.32.20 AM.png

Accepted Answer

Shubham Gupta
Shubham Gupta on 8 Aug 2019
Try this:
for i = 1:length(AppleDECB)
if ~ischar(AppleDECB{i}) % check if cell doesn't contain char
continue; % continue for loop without any process
end
% Write your process here
end
I hope it helps !

More Answers (0)

Categories

Find more on Search Path in Help Center and File Exchange

Tags

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!