From: dpb on
Bruno Luong wrote:
> To find elements equal to 6, use
>
> [row,col]=find(A==6)
>
> And don't forget to read "Getting Started" document.
>
> Bruno

And also don't forget that if your array morphs into something other
than whole integers that floating point comparison for exact equality
may produce unexpected results (or, more precisely, _not_ produce
expected results)...

--
From: Peter Riddersholm on
Thanks Bruno.

I will read the document :)

"Bruno Luong" <b.luong(a)fogale.findmycountry> wrote in message <hva601$q0e$1(a)fred.mathworks.com>...
> To find elements equal to 6, use
>
> [row,col]=find(A==6)
>
> And don't forget to read "Getting Started" document.
>
> Bruno