I have a large set of vectors in 3 dimensions. I need to cluster these based on Euclidean distance such that all the vectors in any particular cluster have a Euclidean distance between each other less than a threshold "T".
I do not know how many clusters exist. In the end, there may be individual vectors existing that are not part of any cluster because its Euclidean distance is not less than "T" with any of the vectors in the space.
What existing algorithms/approaches should be used here?