blob: 6983fb0bb9132009126832a6a2f9ff407593d95e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
% vim:ts=2 sw=2 et:
\documentclass[tikz, border=5mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
clip = false,
width = 8cm, height = 6cm,
xtick = \empty, ytick = \empty,
colormap name = viridis,
axis lines = middle,
axis line style = {ultra thick, -latex}
]
\addplot+[
smooth, mark=none, line width = 3pt, mesh,
point meta=explicit,
] file {curvature-1d.dat};
\end{axis}
\end{tikzpicture}
\end{document}
|