summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShantanu Choudhary2010-04-17 12:57:03 +0530
committerShantanu Choudhary2010-04-17 12:57:03 +0530
commit1f4675ba1355587be4ab96427b678cf38941a84a (patch)
tree36fd543270ca681e5b117d9be543ea57ecbbffd1
parentdba9c4993bb89e0ad9fb835e8c7d7f2c5436a5ad (diff)
downloadst-scripts-1f4675ba1355587be4ab96427b678cf38941a84a.tar.gz
st-scripts-1f4675ba1355587be4ab96427b678cf38941a84a.tar.bz2
st-scripts-1f4675ba1355587be4ab96427b678cf38941a84a.zip
Changes to solving-equations.tex.
-rw-r--r--presentations/solving-equations.tex16
1 files changed, 4 insertions, 12 deletions
diff --git a/presentations/solving-equations.tex b/presentations/solving-equations.tex
index 680e0a2..248de98 100644
--- a/presentations/solving-equations.tex
+++ b/presentations/solving-equations.tex
@@ -56,7 +56,7 @@
\newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} }
% Title page
-\title{Python for Scientific Computing : Least Square Fit}
+\title{Python for Scientific Computing : Solving Equations}
\author[FOSSEE] {FOSSEE}
@@ -73,12 +73,10 @@
\begin{frame}
\frametitle{About the Session}
\begin{block}{Goal}
-Finding least square fit of given data-set
+Using arrays to find solutions and roots or equations.
\end{block}
- \begin{block}{Checklist}
- \begin{itemize}
- \item pendulum.txt
- \end{itemize}
+ \begin{block}{Prerequisite}
+ Understanding of Arrays.
\end{block}
\end{frame}
@@ -90,12 +88,6 @@ Consider,
2x - 2y + 4z & = -2 \\
-x + \frac{1}{2}y -z & = 0
\end{align*}
-Solution:
- \begin{align*}
- x & = 1 \\
- y & = -2 \\
- z & = -2
- \end{align*}
\end{frame}
\begin{frame}[fragile]