# HG changeset patch # User Puneeth Chaganti # Date 1255612600 -19800 # Node ID d3aae4b05e99898230c750f547c2c5b9e32784fc # Parent b4a83ea1a5176341f86c0766206a800d43fbf3c4 Minor edits to day1 session1. diff -r b4a83ea1a517 -r d3aae4b05e99 day1/session1.tex --- a/day1/session1.tex Thu Oct 15 15:51:49 2009 +0530 +++ b/day1/session1.tex Thu Oct 15 18:46:40 2009 +0530 @@ -190,11 +190,14 @@ \frametitle{Title and Legends} \begin{lstlisting} In []: title('Sinusoids') +#Sets the title of the figure + +In []: legend() # When plot made with label # plot(y, -2*sin(-y), label='sin') -In []: legend() +In []: legend(['sin']) # When no label, or to change -In []: legend(['sin']) + \end{lstlisting} \end{frame} @@ -257,7 +260,10 @@ \frametitle{Showing it better} \begin{lstlisting} In []: plot(y, sin(y), 'g') -In []: plot(y, sin(y), linewidth=2) +# plots the curve using green color + +In []: plot(y, sin(y), linewidth=2) +# sets the linewidth to 2 \end{lstlisting} \end{frame} @@ -266,17 +272,19 @@ \begin{lstlisting} In []: annotate('Sample point', (50,200)) +# Adds the note 'Sample point' at +# the point (50, 200) \end{lstlisting} \end{frame} \begin{frame}[fragile] \frametitle{Axes lengths} \begin{lstlisting} -#Get the limits +#Get the axes limits In []: xmin, xmax = xlim() In []: ymin, ymax = ylim() -#Set the limits +#Set the axes limits In []: xlim( xmin, xmax ) In []: ylim( ymin, ymax ) \end{lstlisting}