summaryrefslogtreecommitdiff
path: root/day1/cheatsheet6.tex
diff options
context:
space:
mode:
authorShantanu2009-12-22 14:10:37 +0530
committerShantanu2009-12-22 14:10:37 +0530
commitdfd30ccfe16229203702ae0332165e14fdaf80cf (patch)
tree1521217ba931f93a96ad98c3019110c89a720b8a /day1/cheatsheet6.tex
parentb3821a5ee2fd2b655873c93ad78cd15e899decac (diff)
downloadworkshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.tar.gz
workshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.tar.bz2
workshops-more-scipy-dfd30ccfe16229203702ae0332165e14fdaf80cf.zip
commited changes made for scipy and cheatsheats.
Diffstat (limited to 'day1/cheatsheet6.tex')
-rwxr-xr-xday1/cheatsheet6.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/cheatsheet6.tex b/day1/cheatsheet6.tex
index 5dacecc..7eddb8f 100755
--- a/day1/cheatsheet6.tex
+++ b/day1/cheatsheet6.tex
@@ -82,7 +82,7 @@ Out[95]: 1.5707963267948966
In [96]: expression(pi/3)
Out[96]: 0.90689968211710881
\end{lstlisting}
-\subsection{Roots of non-linear eqations}
+\subsection{Roots of non-linear equations}
For Finding the roots of a non linear equation(defined as $f(x)=0$), around a starting estimate we use \typ{fsolve}:\\
\typ{In []: from scipy.optimize import fsolve}\\
\typ{fsolve} is not a part of \typ{pylab}, instead is a function in the \textbf{optimize} module of \textbf{scipy}, and hence we \textbf{import} it.\\