I have not found an implementation of such an algorithm on Python
Something like this:
There are two input arguments:
- n - dimension of space.
- m - number of points on the n-1 sphere.
I need to approximately evenly arrange them on the surface of the n-sphere.
Coordinate axes are located in the center of n-1 sphere. For example in 3d on a regular sphere it's possible to position the points like this
In my opinion, the Fibonacci algorithm is very good visually. I don't know if there is something similar for n-sphere. I have 512D space and I'm going to place 1000 or even 10,000 points in it.
How to do this in python?