On Friday, January 28, 2011, Thomas Lecocq wrote:
>
>
>
>
>
>
> From: patbradf
> To: matplotlib-users@lists.sourceforge.net
> Date: Wed, 26 Jan 2011 22:53:28 -0600
> Subject: [Matplotlib-users] Problem with "projection='3d'"
>
> Forgive me if this is an old question, but I just loaded mplot3d and
Hi all,
I have a derived class that I copy-pasted from the web somewhere to hide
some tick labels:
class MinorLogTickFormatter(matplotlib.ticker.LogFormatter):
# Format log scale with 10^ labels. Only if show one label over two.
def __call__(self, val, pos=None):
exponent =
int(nu
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
> in post processing?
>
>
>
> if you can do the plots with post processing you should be able to use
> pcolor function to
From: patbradf
To: matplotlib-users@lists.sourceforge.net
Date: Wed, 26 Jan 2011 22:53:28 -0600
Subject: [Matplotlib-users] Problem with "projection='3d'"
Forgive me if this is an old question, but I just loaded mplot3d and was
attempting to work through a couple of the examples on the Matplo
Forgive me if this is an old question, but I just loaded mplot3d and was
attempting to work through a couple of the examples on the Matplotlib
website. The problem is that whenever I try to make a call to a function
that requires an argument of projection='3d' (such as: ax =
fig.add_subplot(111,
On Wednesday, January 26, 2011, Soumyaroop Roy wrote:
> Hi Ben:
>
> That's encouraging!
>
> I want to be able plot up to N data points (the points are in an
> ordered sequence) on a canvas and then zoom into the plot region
> enclosed within a subset sequence (e.g., T1 to T2 data points, 0 <= T1
>