On 7/15/2009 5:58 PM Dr. Phillip M. Feldman apparently wrote:
> I'm a newbie to matplotlib.  When I try to generate a simple plot, nothing 
> happens.  Any advice will be appreciated.  Here's my code:

> from numpy import * 
> from matplotlib import * 

> x= arange(0,10.,0.1)
> y= x**1.5 - 0.25*x**2 

> pyplot.figure(figsize=(9, 6), dpi=120)
> pyplot.plot(x, y)


Hmm, I don't think you copied that quite right.
Anyway::

    import numpy as np
    from matplotlib import pyplot as plt

    x= np.arange(0,10.,0.1)
    y= x**1.5 - 0.25*x**2

    fig = plt.figure(figsize=(9, 6), dpi=120)
    myplot = plt.plot(x, y)

    plt.show()

Alan Isaac


------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to