我想制作一个表面图数据.txt。我使用以下代码作为MWE。
\documentclass{article}
\usepackage{tikz,pgfplots}
\pgfplotsset{compat = 1.8}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3[surf, mesh/ordering = y varies] table {data.txt};
\end{axis}
\end{tikzpicture}
\end{document}
此代码产生以下结果:
在 Matlab 中使用相同的数据会给我以下表面图,因此这是预期的结果。
我搜索了好久,但就是找不到问题所在。我估计是某种错误的索引。