AttributeError: module 'matplotlib' has no attribute 'delaunay'这是什么错
时间: 2023-10-24 13:06:15 浏览: 128
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为您的代码中使用了 `matplotlib.delaunay`,但该模块已在最新的 matplotlib 版本中被删除。相反,您可以使用 `matplotlib.tri` 来进行 Delaunay 三角剖分。您可以尝试在代码中将 `matplotlib.delaunay` 替换为 `matplotlib.tri` 来解决此错误。
阅读全文