MATLAB: Find function for cell array

cell arraysfind

I havr a cell myCell 1×200 Each cell contains set of three values like myCell{1,1} = 1,118,180 … myCell{1,8}= 1,122,185 and so on If I have to use find function by providing all three values, how should I use?

Best Answer

Do all elemts of the cell have the same size and type? Then working with a numerical array is easier and faster:
M = cat(1, myCell{:});
match = find(ismember(M, [1,2,128], 'rows'))
% or
find(M == [1,2,128]) % auto-expanding, >=Matlab R2016b