答え1
真のランダム性は奇妙な表面を生み出す可能性があります。波状の表面が欲しいようですね。三角関数を使えば簡単です。まずはシンプルな cos を使ったパラメトリック プロットをご覧ください。関数を操作して、sin 式などの三角関数を追加したり、因数を使用したりすることができます。
\documentclass[border=10pt]{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{colormaps}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
view={120}{40},
grid=major,
xmin=-4,xmax=4,
ymin=-4,ymax=4,
zmin=-1,zmax=10,
enlargelimits=upper,
colormap/bone,
trig format plots=rad,
]
\addplot3 [ surf, domain=-4:4, domain y=-4:4,
samples=20, samples y=20,
variable=\u, variable y=\v,
point meta=u*v ]
( {u}, {v}, {cos(u) + cos(v)} );
\end{axis}
\end{tikzpicture}
\end{document}