[Matplotlib-users] plot() and imshow() relationship

2015-05-29 Thread Amit Saha
Hi all, I am trying to understand if there is a way to compare how plot() and imshow() works for the case where I am not using imshow() to display an image. Via the plot() function, I am specifying the points that I want to plot and also optionally the color that i want the points to be in. For

Re: [Matplotlib-users] Runtime Error on Solaris - Error Closing Dupe File Handle

2015-05-29 Thread Bryan Williams
It seems like it is a conflict of libraries...I've zeroed in to these two errors: /usr/include/unistd.h:496:75: error: conflicting declaration of C function 'void swab(const void*, void*, ssize_t)' and /usr/include/stdlib.h:144:13: note: previous declaration 'void swab(const char*, char*,

Re: [Matplotlib-users] plot() and imshow() relationship

2015-05-29 Thread Paul Hobson
imshow is for displaying arrays as images/rasters. plot is for showing data/functions as points and lines. See the gallery for imshow: http://matplotlib.org/gallery.html#images_contours_and_fields On Fri, May 29, 2015 at 4:12 AM, Amit Saha amitsaha...@gmail.com wrote: Hi all, I am trying