From: ErasmusMC on
"Christian Koch" <christian.koch(a)abwesend.de> wrote in message <ho2bln$2ha$1(a)fred.mathworks.com>...
> "Sadik " <sadik.hava(a)gmail.com> wrote in message <ho120o$smj$1(a)fred.mathworks.com>...
> > Hi Christian,
> >
> > You can use
> >
> > imagesc(x,y,Data)
> >
> > after defining your non-linear vectors x and y.
> >
> > Best.
>
> Thank you for the answer but the image is still warped, plotting with mesh() works but I somehow need to transfer the data to a regular grid.

If I understand the problem correctly this is what you need:

pcolor(x,y,Data)

Beware:you probably will have to change your x y coordinates to the "node" of the data (in between the coordinates where the data is defined).

Regards