运行vor = Voronoi(a)代码时报错AttributeError: 'NoneType' object has no attribute 'close'
时间: 2023-10-27 20:51:57 浏览: 48
这个错误通常表示输入的点集a不符合Voronoi图的要求,可能是以下原因之一:
1. 输入的点集a为空,即没有点。
2. 输入的点集a中的点有重复。
3. 输入的点集a中的点都在同一位置上,无法构成Voronoi图。
4. 输入的点集a中的点不足以构成Voronoi图,至少需要3个点。
请检查输入的点集a,确保符合Voronoi图的要求。
相关问题
报错:AttributeError: 'Voronoi' object has no attribute 'closest_point'
这个错误意味着你正在尝试在一个名为“Voronoi”的对象上调用一个名为“closest_point”的属性或方法,但该对象没有这个属性或方法。
可能的原因是你正在使用的版本不支持该属性或方法,或者你可能已经打错了属性或方法的名称。请检查你的代码,确保你正在使用正确的属性或方法名称,或者根据需要升级你的库版本。
AttributeError: 'Voronoi' object has no attribute 'closest_point'
This error is usually encountered when you try to call the method closest_point on an object of the class Voronoi, but this method does not exist in this class.
To fix this error, you need to check the documentation of the Voronoi class to see if there is a method with a similar name or functionality that you can use instead. Alternatively, you may need to use a different class or package that has the closest_point method you need.
阅读全文