how to know if cell has some empty values

I have cell array. How do I check that if column 3 has some empty values or not?

 Accepted Answer

Where C is your cell array:
any(cellfun(@isempty,C(:,3)))

More Answers (0)

Products

Asked:

on 10 Jan 2022

Answered:

on 10 Jan 2022

Community Treasure Hunt

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

Start Hunting!