summaryrefslogtreecommitdiff
path: root/day1/cheatsheet5.tex
diff options
context:
space:
mode:
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.