basic-plot.txt
changeset 24 ef1c04ac0a4f
parent 19 b77b9fce62d6
child 25 5d56afacbfa9
equal deleted inserted replaced
21:cc33c97ed034 24:ef1c04ac0a4f
    10 *In this tutorial, we will cover the basics of the Plotting features available in Python. 
    10 *In this tutorial, we will cover the basics of the Plotting features available in Python. 
    11 For this we shall use  Ipython and pylab. 
    11 For this we shall use  Ipython and pylab. 
    12 Ipython is An Enhanced Interactive Python interpreter. It provides additional features like tab completion,easier access to help , and many other useful features which are not present in the vanilla Python interpreter.
    12 Ipython is An Enhanced Interactive Python interpreter. It provides additional features like tab completion,easier access to help , and many other useful features which are not present in the vanilla Python interpreter.
    13 Pylab is python library which provides plotting functionality. 
    13 Pylab is python library which provides plotting functionality. 
    14 
    14 
    15 I am assuming that you have both Ipython and Pylab installed on your system .
    15 I am assuming that both Ipython and Pylab are installed on your system .
    16 
    16 
    17 *On your terminal type in the command Ipython -pylab
    17 *On your terminal type in the command Ipython -pylab
    18 $ ipython -pylab
    18 $ ipython -pylab
    19 press RETURN
    19 press RETURN
    20 
    20 
    21 We will first start with the absolute basic, that is how to print hello world
    21 We will first start with the customary Hello world program. print hello world
    22 
    22 
    23 In []: print 'hello world'
    23 In []: print 'hello world'
    24 
    24 
    25 Voila we have got hello world as the output 
    25 Voila we have got hello world as the output 
    26 
    26