In my cell array test = cell(1,2,20,14);
I want to find numeric values in the subset test(:,1,1,1).
For example test(:,:,1,1)
looks like this:
>> test(:,:,1,1)
ans =
[ 0] [0.1000] [57]
[0.9000] [0.9500] [73]
I want to find the index of the cell containing 0.9 in the first column, so I can access the third column (in this case value 73). I tried:
find(test{:,:,1,1} == 0.9)
which gives:
Error using == Too many input arguments.
.
How can I find the respective index?
Thanks.