使用 Tikz 绘制三维曲线 $z=xy\sin(x^2+y^2)$

使用 Tikz 绘制三维曲线 $z=xy\sin(x^2+y^2)$

我用 Mathematica 绘制了三维曲线,z=xy\sin(x^2+y^2)如下所示

在此处输入图片描述

如何用 绘制它TikZ

答案1

\documentclass[10pt,a4paper]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\begin{document}

\begin{tikzpicture}
\begin{axis}[
%hide axis,
xlabel=$x$,ylabel=$y$,
mesh/interior colormap name=hot,
colormap/blackwhite,
]
\addplot3[domain=-3:3,surf,samples=41]
{x*y*sin(deg(x^2+y^2))};
\end{axis}
\end{tikzpicture}

\end{document}

阴谋

相关内容