MATLAB: Find function with cells

cell arraysfind

A=[ 'a','b','c','d','e'];
A=A(:);
%for example I need to find which row equals 'd' in A matrix, how can I use find function in this example?

Best Answer

find(A=='d')