我的函数(名称 CovexHull(point))接受参数作为二维数组。
hull = ConvexHull(点)
In [1]: points.ndim
Out[1]: 2
In [2]: points.shape
Out[2]: (10, 2)
In [3]: points
Out[3]:
array([[ 0. , 0. ],
[ 1. , 0.8],
[ 0.9, 0.8],
[ 0.9, 0.7],
[ 0.9, 0.6],
[ 0.8, 0.5],
[ 0.8, 0.5],
[ 0.7, 0.5],
[ 0.1, 0. ],
[ 0. , 0. ]])
points 是一个带有 ndim 2 的 numpy 数组。
我有 2 个不同的 numpy 数组(tp 和 fp),如下所示
In [4]: fp.ndim
Out[4]: 1
In [5]: fp.shape
Out[5]: (10,)
In [6]: fp
Out[6]:
array([ 0. , 0.1, 0.2, 0.3, 0.4, 0.4,
0.5, 0.6, 0.9, 1. ])
我想知道如何使用 tp 和 fp 有效地创建一个二维 numpy 数组(如上面提到的点)。