类 DoublePoint
java.lang.Object
org.hipparchus.clustering.DoublePoint
- 所有已实现的接口:
-
Serializable
,Clusterable
一个简单的实现,用于具有双坐标的点的
Clusterable
。
- 另请参阅:
-
构造器概要
-
方法概要
-
构造器详细资料
-
DoublePoint
public DoublePoint(double[] point) 构建一个包装双精度数组的实例。包装的数组是引用,而不是复制。
- 参数:
-
point
- 双精度空间中的n维点
-
DoublePoint
public DoublePoint(int[] point) 构建一个包装整数数组的实例。将包装的数组复制到内部双精度数组。
- 参数:
-
point
- 整数空间中的n维点
-
-
方法详细资料
-
getPoint
public double[] getPoint()获取n维点。在这个
Clusterable
接口的实现中,该方法始终返回对内部数组的引用。- 指定者:
-
getPoint
在接口中Clusterable
- 返回:
- 点数组(注意,它可能是对内部数组的引用)
-
equals
-
hashCode
public int hashCode() -
toString
-