gpt4 book ai didi

graphics - 图形中的凸包 - Mathematica

转载 作者:行者123 更新时间:2023-12-04 16:49:01 26 4
gpt4 key购买 nike

尝试使用 ComputationalGeometry 包中的 PlanarGraphPlot 绘制 ConvexHull,但在图形中使用时不起作用。

关于如何使用 Graphics 绘制 ConvexHull 的任何想法?

最佳答案

Needs["ComputationalGeometry`"]
pts = RandomReal[{0, 10}, {60, 2}];

Graphics[
{
Point@pts,
FaceForm[], EdgeForm[Red],
Polygon@pts[[ConvexHull[pts]]]
}
]

或者
cpts = pts[[ConvexHull[pts]]];
AppendTo[cpts, cpts[[1]]];

Graphics[
{
Point@pts,
Red,
Line@cpts
}
]

enter image description here

关于graphics - 图形中的凸包 - Mathematica,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6270778/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com