Does python have built-in graphic class for plot?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • python101
    New Member
    • Sep 2007
    • 90

    Does python have built-in graphic class for plot?

    I would like to plot something like Sin(x), Cos(x), etc using python, I wonder if python has built-in graphic class for plot.
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by python101
    I would like to plot something like Sin(x), Cos(x), etc using python, I wonder if python has built-in graphic class for plot.
    [CODE=python]from math import sin, cos[/CODE]

    Comment

    • rogerlew
      New Member
      • Jun 2007
      • 15

      #3
      Nothing built-in.

      Popular choices are gnuplot, and matplotlib.

      If you have matlab experience try matplotlib. The syntax and concepts are similiar.

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by rogerlew
        Nothing built-in.

        Popular choices are gnuplot, and matplotlib.

        If you have matlab experience try matplotlib. The syntax and concepts are similiar.
        Thanks, Roger. That's a much better answer than mine was. I see now that it was 03:46 AM, which will explain my missing the OP's point completely.

        Thanks, again,
        Barton.

        Comment

        Working...