绘图:e^x*sin(x^2+y^2)

绘图:e^x*sin(x^2+y^2)

我想绘制方程式:e^x*sin(x^2+y^2),但 LaTeX 中的结果与使用 Geogebra 绘制的实际图形明显不同。原因是什么?

\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[scale=2]
    \begin{axis}[
        title={$e^{x}\sin(x^{2}+y^{2})$}, 
        xlabel=$x$, ylabel=$y$,
        small,
    ]
    \addplot3[
        surf,
        domain=-50:50,
        domain y=-50:50,
    ] 
        {e^x*sin(x^2+y^2)};
    \end{axis}
\end{tikzpicture}
\end{document}

相关内容