我正在尝试使用输入数据制作 3D 曲面pgfplots
。我无法获得预期的图形。如果您能指出我遗漏了什么,我将不胜感激。
\documentclass{standalone}
\usepackage{pgfplots}
\usepackage{filecontents}
\begin{filecontents*}{mydata.dat}
x y z
-1 -1 597.00
1 -1 649.00
-1 -1 597.00
1 -1 649.00
-1 1 1056.75
1 1 801.50
-1 1 1056.75
1 1 801.50
-1 -1 597.00
1 -1 649.00
-1 -1 597.00
1 -1 649.00
-1 1 1056.75
1 1 801.50
-1 1 1056.75
1 1 801.50
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}[]
\addplot3[surf, mesh] table{mydata.dat};
\end{axis}
\end{tikzpicture}
\end{document}