Hi,
I have a list (cell array) of elements with structs like this:
mystruct = struct('x', 'foo', 'y', 'bar', 's', struct('text', 'Pickabo'));
mylist = {mystruct <more similar struct elements here>};
Now I would like to filter mylist for all structs from which s.text == 'Pickaboo' or some other predefines string. What is the best way to achieve this in matlab? Obviously this is easy for arrays, but what is the best way to do this for cells?