我得到了下图:
使用以下代码:
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\def\centerx{2}
\def\centery{-1}
\begin{tikzpicture}
\begin{axis}
\addplot3[surf,domain=-2:6,domain y=-5:3]
{exp(-( (x-\centerx)^2 + (y-\centery)^2)/3 )};
\node[circle,inner sep=1pt,fill=blue,pin=90:$\mu$]
at (axis cs:\centerx,\centery,1) {};
\end{axis}
\end{tikzpicture}
\end{document}
我想知道如何在没有一些轴的情况下得到这个图形,如下所示:
答案1
您可能希望使用这些axis lines
选项(请参阅pgfplots 手册)。
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\def\centerx{2}
\def\centery{-1}
\begin{tikzpicture}
\begin{axis}[axis lines=left]
\addplot3[surf,domain=-2:6,domain y=-5:3]
{exp(-( (x-\centerx)^2 + (y-\centery)^2)/3 )};
\node[circle,inner sep=1pt,fill=blue,pin=90:$\mu$]
at (axis cs:\centerx,\centery,1) {};
\end{axis}
\end{tikzpicture}
\end{document}