how to know if cell has some empty values

1 view (last 30 days)
I have cell array. How do I check that if column 3 has some empty values or not?

Accepted Answer

Stephen23
Stephen23 on 10 Jan 2022
Where C is your cell array:
any(cellfun(@isempty,C(:,3)))

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!