PandA-2024.02
|
Variables | |
points = np.array( [(float(x),float(y),float(z)) for (x,y,z) in map(lambda L: L.strip().split(), sys.stdin.readlines())] ) | |
N = points.shape[0] | |
float | expected_dist = 12.69 |
dists = np.zeros((N,N)) | |
minpair = np.unravel_index(np.argmin(dists), (N,N)) | |
maxpair = np.unravel_index(np.argmax(dists), (N,N)) | |
Definition at line 14 of file point_stats.py.
Referenced by DigitRec_sw(), and update_knn().
float point_stats.expected_dist = 12.69 |
Definition at line 12 of file point_stats.py.
Definition at line 28 of file point_stats.py.
Definition at line 24 of file point_stats.py.
point_stats.N = points.shape[0] |
Definition at line 8 of file point_stats.py.