我第一次尝试使用 pgfplots 绘制三维图。我想删除图中的蓝色标记,但我不知道该怎么做。这是我的代码:
\begin{figure}[H]
\centering
\begin{tikzpicture}
\begin{axis}[
surf, xmax=3,xmin=-3,ymax=3,ymin=-3,
%view={0}{90},
shader=interp,
xlabel=$x$,
ylabel=$y$,
colorbar,
meta min=0,
meta max=10] \addplot3{(0.01014-0.001554*x^2+0.00293*y^2+0.002785*x^2*y^2+0.001167*x^4)/(0.009553)};
\end{axis}
\end{tikzpicture}
\end{figure}
这是我的结果:
在此先感谢您的帮助!
答案1
您的代码无法编译,因为它不完整且有错误。如果它可以编译,它就不会产生您显示带有标记的图片。
\documentclass[tikz, border=1cm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=-3, xmax=3,
ymin=-3, ymax=3,
xlabel=$x$, ylabel=$y$,
colorbar,
point meta min=0,
point meta max=10,
]
\addplot3[surf, shader=interp]{(0.01014-0.001554*x^2+0.00293*y^2+0.002785*x^2*y^2+0.001167*x^4)/(0.009553)};
\end{axis}
\end{tikzpicture}
\end{document}