diff options
-rw-r--r-- | plotting-data/script.rst | 6 | ||||
-rw-r--r-- | plotting-data/slides.org | 8 | ||||
-rw-r--r-- | plotting-data/slides.tex | 11 |
3 files changed, 15 insertions, 10 deletions
diff --git a/plotting-data/script.rst b/plotting-data/script.rst index 70e5f06..96ad313 100644 --- a/plotting-data/script.rst +++ b/plotting-data/script.rst @@ -167,13 +167,13 @@ of errorbar.:: In this tutorial we have learnt : -1. How to declare a sequence of number , specifically the kind of sequence we learned was a list. +1. How to declare a sequence of numbers. -2. Plotting experimental data extending our knowledge from mathematical functions. +2. Plotting experimental data. 3. The various options available for plotting dots instead of lines. -4. Plotting experimental data such that we can also represent error. We did this using the errorbar() function. +4. Plotting experimental data such that we can also represent error. {{{ Show the "sponsored by FOSSEE" slide }}} diff --git a/plotting-data/slides.org b/plotting-data/slides.org index 9545e41..0a89ae8 100644 --- a/plotting-data/slides.org +++ b/plotting-data/slides.org @@ -75,12 +75,14 @@ * Plotting Error bar - : In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, - : fmt='b.') + : In[]: errorbar(L,tsquare,xerr=delta_L, + : yerr=delta_T,fmt='b.') + * Summary : L = [0.1, 0.2, 0.3, 0.4, 0.5, | : 0.6, 0.7, 0.8, 0.9] : plot(x,y,'o') : plot(x,y,'.') - : errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.') + : errorbar(L,tsquare,xerr=delta_L, + : yerr=delta_T, fmt='b.') diff --git a/plotting-data/slides.tex b/plotting-data/slides.tex index b03d4e1..87fa8fb 100644 --- a/plotting-data/slides.tex +++ b/plotting-data/slides.tex @@ -1,4 +1,4 @@ -% Created 2010-11-09 Tue 15:09 +% Created 2010-11-09 Tue 17:34 \documentclass[presentation]{beamer} \usepackage[latin1]{inputenc} \usepackage[T1]{fontenc} @@ -121,9 +121,11 @@ showstringspaces=false, keywordstyle=\color{blue}\bfseries} \begin{verbatim} - In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, - fmt='b.') + In[]: errorbar(L,tsquare,xerr=delta_L, + yerr=delta_T,fmt='b.') \end{verbatim} + + \end{frame} \begin{frame}[fragile] \frametitle{Summary} @@ -134,7 +136,8 @@ showstringspaces=false, keywordstyle=\color{blue}\bfseries} 0.6, 0.7, 0.8, 0.9] plot(x,y,'o') plot(x,y,'.') - errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.') + errorbar(L,tsquare,xerr=delta_L, + yerr=delta_T, fmt='b.') \end{verbatim} \end{frame} |