PandA-2024.02
|
Go to the source code of this file.
Namespaces | |
point_stats | |
Variables | |
point_stats.points = np.array( [(float(x),float(y),float(z)) for (x,y,z) in map(lambda L: L.strip().split(), sys.stdin.readlines())] ) | |
point_stats.N = points.shape[0] | |
float | point_stats.expected_dist = 12.69 |
point_stats.dists = np.zeros((N,N)) | |
point_stats.minpair = np.unravel_index(np.argmin(dists), (N,N)) | |
point_stats.maxpair = np.unravel_index(np.argmax(dists), (N,N)) | |