summaryrefslogtreecommitdiff
path: root/basic-plot.txt
diff options
context:
space:
mode:
authorSantosh G. Vattam2010-04-07 17:33:50 +0530
committerSantosh G. Vattam2010-04-07 17:33:50 +0530
commit1659073d100873ccc4647ef9d4dd18e41d40e123 (patch)
treec865b041a1fbb538ffbe485c93073144890c2cdf /basic-plot.txt
parent5bdc398211708fac05e729c25f324e6b6eadcb8f (diff)
downloadst-scripts-1659073d100873ccc4647ef9d4dd18e41d40e123.tar.gz
st-scripts-1659073d100873ccc4647ef9d4dd18e41d40e123.tar.bz2
st-scripts-1659073d100873ccc4647ef9d4dd18e41d40e123.zip
Minor edits.
Diffstat (limited to 'basic-plot.txt')
-rw-r--r--basic-plot.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic-plot.txt b/basic-plot.txt
index 5846405..35f0e67 100644
--- a/basic-plot.txt
+++ b/basic-plot.txt
@@ -12,13 +12,13 @@ For this we shall use Ipython and pylab.
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.
Pylab is python library which provides plotting functionality.
-I am assuming that you have both Ipython and Pylab installed on your system .
+I am assuming that both Ipython and Pylab are installed on your system .
*On your terminal type in the command Ipython -pylab
$ ipython -pylab
press RETURN
-We will first start with the absolute basic, that is how to print hello world
+We will first start with the customary Hello world program. print hello world
In []: print 'hello world'