iscellstr - Checks if all the cell components are strings
Given a cell c ,the function iscellstr returns 1 if all the cell components are strings else returns 0.
// example 1: c=makecell([1,3],'foo1','foo2','foo3'); y=iscellstr(c) // example 2: c=makecell([1,3],'foo1',5,'foo3'); y=iscellstr(c)
Farid Belahcene