From: Camille Couzi on
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <61e88020-ac77-434d-9f5d-3fd7569c73d6(a)t2g2000yqe.googlegroups.com>...
> Camille:
> Why not just do something like
>
> imageArray(isnan(imageArray)) = 0;
> imshow(imageArray, []);
>
> If it's still upside down, use flipud() to flip it.


Hi,
If I put:
colormap([jet(60)]);
Im=imagesc(matriz);

Im(isnan(Im)) = 0;
imshow(Im, []);
colorbar

It doesn't work, it put a grey scale axes and nothing inside the axes.
Perhaps I have not undertood what I have to put in "imagearray"...
Thank you so much for your help.

Camille.