Minor edits.
authorShantanu <shantanu@fossee.in>
Sun, 11 Apr 2010 03:07:55 +0530
changeset 45 9d61db7bf2f4
parent 44 31173328496d
child 46 34df59770550
Minor edits.
presentations/loadtxt.tex
statistics-script
--- a/presentations/loadtxt.tex	Sun Apr 11 02:59:46 2010 +0530
+++ b/presentations/loadtxt.tex	Sun Apr 11 03:07:55 2010 +0530
@@ -91,7 +91,7 @@
   \begin{block}{Goal}
     \begin{itemize}
     \item Plotting experimental data from files - advanced
-    \item Arrays - Introduction
+    \item Performing statistical operations in an efficient way
     \end{itemize}    
   \end{block}
   \begin{block}{Checklist}
--- a/statistics-script	Sun Apr 11 02:59:46 2010 +0530
+++ b/statistics-script	Sun Apr 11 03:07:55 2010 +0530
@@ -4,6 +4,7 @@
 We used 'for' loops and lists to get data in the desired format.
 IPython -Pylab also provides a function called 'loadtxt' that can get us the same data in the desired format without much hustle.
 
+We shall use the same pendulum.txt file that we used in the previous session.
 We know that, pendulum.txt contains two columns, with length being first and time period is second column, so to get both columns in two separate variables we type
 
 l, t = loadtxt('pendulum.txt', unpack=True)