Equivalent for imshow for 3 numarray.arrays

Hi list,

Is there a function doing same behaviour as imshow but with 3 numarray.arrays:
- 1 for the x values.
- 1 for the y values.
- 1 for the value coloration of the point.

For imshow, we only need the array bidimensionnal containing value of the coloration and the coordinates of the point are determine by the position of the coloration value on the first and on the second dimension.

Thanks a lot,
Philippe Collet

Philou wrote:

···

Hi list,

Is there a function doing same behaviour as imshow but with 3
numarray.arrays:
- 1 for the x values.
- 1 for the y values.
- 1 for the value coloration of the point.

For imshow, we only need the array bidimensionnal containing value of
the coloration and the coordinates of the point are determine by the
position of the coloration value on the first and on the second dimension.

Thanks a lot,
Philippe Collet

-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server.
Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options

Sorry, I send an empty reply.

Philou wrote:

Hi list,

Is there a function doing same behaviour as imshow but with 3
numarray.arrays:
- 1 for the x values.
- 1 for the y values.
- 1 for the value coloration of the point.

For imshow, we only need the array bidimensionnal containing value of
the coloration and the coordinates of the point are determine by the
position of the coloration value on the first and on the second dimension.

If both x- and y-data are equidistant then you can use the 'extent' keyword
parameter to specify the x- and y-axis range of the image by hand. If not, you
could try the contourf function.

Christian

Have you tried pcolor?

Eric

···

Is there a function doing same behaviour as imshow but with 3
numarray.arrays:
- 1 for the x values.
- 1 for the y values.
- 1 for the value coloration of the point.