summaryrefslogtreecommitdiff
path: root/day1/cheatsheet5.tex
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-12-08 16:37:18 +0530
committerSantosh G. Vattam2009-12-08 16:37:18 +0530
commit5c6a22254dd22ba8225a6bb7b816548cdb70cebc (patch)
tree36a2f9d2552a022991c7aad4b592ad122ee57d21 /day1/cheatsheet5.tex
parentb3821a5ee2fd2b655873c93ad78cd15e899decac (diff)
downloadworkshops-more-scipy-5c6a22254dd22ba8225a6bb7b816548cdb70cebc.tar.gz
workshops-more-scipy-5c6a22254dd22ba8225a6bb7b816548cdb70cebc.tar.bz2
workshops-more-scipy-5c6a22254dd22ba8225a6bb7b816548cdb70cebc.zip
Minor edits to correct spellings.
Diffstat (limited to 'day1/cheatsheet5.tex')
-rw-r--r--day1/cheatsheet5.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/cheatsheet5.tex b/day1/cheatsheet5.tex
index 0a0f600..cf9b405 100644
--- a/day1/cheatsheet5.tex
+++ b/day1/cheatsheet5.tex
@@ -15,7 +15,7 @@ In [2]: x, y = loadtxt('points.txt', unpack = True)
#load data file directly into Arrays.
\end{verbatim}
\section{}
-Interploate
+Interpolate
\begin{verbatim}
In []: from scipy.interpolate import splrep
In []: tck = splrep(x,y) #get spline curve representation for x,y.