find function does not output values

I am using the find function. I have an 1196x1600 array called 'test' with some values zero and others nonzero. I use the following command to get the indices and values:
[rows,cols,vals]=find(test~=0);
the rows and cols vectors work well, but the vals vector just outputs logical array with a 1 in every cell. The doc for find says that this will output the values associated with the indices but it is not doing that. Please help.

 Accepted Answer

Guillaume
Guillaume on 17 Dec 2014
Edited: Guillaume on 17 Dec 2014
"this will output the values associated with the indices but it is not doing that".
Yes, it is. The matrix that you pass to find is not the test matrix but:
test ~= 0
which is a logical array. Hence its values are either 0 (false) or 1 (true).
It's very simple to fix in your case:
[rows, cols, vals] = find(test);

1 Comment

Thanks! I feel dumb. It says right in the doc for 'find' that it returns the nonzero entries. Oh well...now I know.

Sign in to comment.

More Answers (0)

Categories

Asked:

on 17 Dec 2014

Commented:

on 17 Dec 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!