答案1
这是因为您设置了一个较小的域,如果您使用domain=-3.5:3.5
,则会得到以下结果:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3[
surf,
opacity=0.8,
samples=50, samples y=30,
%colormap/whitered,
domain=-3.5:3.5,domain y=-1:1
%z buffer=sort,
]
{((x+sin(deg(x)))^2};
\end{axis}
\end{tikzpicture}
\end{document}