Re: [Matplotlib-users] 3D Data to 2d Plots

2011-02-02 Thread Mike Alger
-28-11 10:55 AM To: Mike Alger Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] 3D Data to 2d Plots 2011/1/28 Mike Alger Philip, A few questions before I give one possible solution, Does this plot need to be updated in real time ? or is this plot to be done

Re: [Matplotlib-users] 3D Data to 2d Plots

2011-01-27 Thread Mike Alger
Philip, A few questions before I give one possible solution, Does this plot need to be updated in real time ? or is this plot to be done in post processing? if you can do the plots with post processing you should be able to use pcolor function to do your tasks http://matplotlib.so

Re: [Matplotlib-users] color in plot3d

2010-06-16 Thread Mike Alger
onally and see if there is an improvement to be made in the plot surface command From: Pablo Angulo [mailto:pablo.ang...@uam.es] Sent: June-16-10 9:07 AM To: Mike Alger Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] color in plot3d El 15/06/10 01:22, Mike

Re: [Matplotlib-users] color in plot3d

2010-06-14 Thread Mike Alger
][cs]) costmapout=np.array(costmapout) surf.set_array(costmapout) ## do your show plot stuff here!! Mike Alger From: Pablo Angulo [mailto:pablo.ang...@uam.es] Sent: June-11-10 7:04 AM To: matplotlib-users@lists.sourceforge.net Subject: [Matplotlib-users] color in

Re: [Matplotlib-users] axis equal

2009-12-09 Thread Mike Alger
Unfortunately i have not found such a function as of yet and the function that sound close to it (aspect) only controls the windows aspect ratio Fortunately there is a quick and dirty work around I have found the following to be useful Assuming you have X Y Z matrices made using meshgrid or som

Re: [Matplotlib-users] Color in 3d plots

2009-12-09 Thread Mike Alger
Message- From: Reinier Heeres [mailto:rein...@heeres.eu] Sent: December-09-09 7:17 PM To: Mike Alger Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Color in 3d plots Hi Mike, Sorry for the slow reply, but I put support for this in the development version in SVN

Re: [Matplotlib-users] Color in 3d plots

2009-12-01 Thread Michael (Mike) Alger
From: John Hunter Date: Monday, November 30, 2009 11:26 pm Subject: Re: [Matplotlib-users] Color in 3d plots To: Mike Alger Cc: matplotlib-users@lists.sourceforge.net, Reinier Heeres > On Mon, Nov 30, 2009 at 8:06 PM, Mike Alger wrote: > > After a weekend of no replies I managed to fi

Re: [Matplotlib-users] Color in 3d plots

2009-11-30 Thread Mike Alger
.add_collection(polyc) self.auto_scale_xyz(X, Y, Z, had_data) return polyc From: Mike Alger [mailto:mal...@ryerson.ca] Sent: November-25-09 8:42 PM To: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Color in 3d plots I have been looking at th

Re: [Matplotlib-users] Color in 3d plots

2009-11-25 Thread Mike Alger
omeone else to do the final commit? I have attached the function in question for reference to save others from digging down into their python directories Again thanks for taking your time to help me figure this out Mike Alger < Code> def plot_surface(self, X, Y

[Matplotlib-users] Color in 3d plots

2009-11-25 Thread Mike Alger
than Z as long as it has the same dimensions surf(X,Y,Z,C) axis([-3 3 -3 3 -10 5]) Is this possible with matplotlib '0.99.1' If so how do i go about doing this is there some sample code? Mike Alger, M.A.Sc ma