I have cell array that is as follow:
S{1} = [10,20,30,40,50];
S{2} = [10,20,40,50];
S{3} = [10,50,510];
S{4} = [10,20,70,40,60];
S{5} = [20,40];
and,i have a target vector:
T=[10,70]
i need to find rows of cell that T is subitem of those. for above example result is : 4
because T is subitems of row 4.