3d 图形错误与绘图

3d 图形错误与绘图

我在绘制三维图形时遇到问题

\begin{tikzpicture}
  \begin{axis}[
     title=Exmple using the mesh parameter,
     hide axis,
     colormap/cool,
  ]
  \addplot3[
     mesh,
     samples = 40,
     domain=0:1,
    ]
    {exp(-(ln(x)-ln(y))};
  \addlegendentry{$\frac{sin(r)}{r}$}
  \end{axis}
\end{tikzpicture}

问题是

软件包 pdfplots 错误:z 缓冲区重新排序期间发生内部错误:行/列不平衡!我的行数为 40,列数为 40。如果这是错误的,您可能需要手动提供行数和列数...

有人知道如何解决这个问题吗?例如,它可以与函数 sin(x)*sin(y) 一起使用...

答案1

ln(0) 未定义!使用

domain=0.01:1,

相关内容