[x,y,z] = sphere, except uniform or random distributed points

6 次查看(过去 30 天)
Hi,
I like the [x,y,z] = sphere; function, except would like the points returned to be more of a random or uniform sampling of the surface. It seems to have tighter spacing at the "poles", and sparse at the "equator".
Thanks a lot. Dave

采纳的回答

Roger Stafford
Roger Stafford 2016-6-11
编辑:Roger Stafford 2016-6-11
Here is a way to generate random points on a sphere that is statistically uniform.
r = randn(3,n); % Use a large n
r = bsxfun(@rdivide,r,sqrt(sum(r.^2,1)));
x = r(1,:);
y = r(2,:);
z = r(3,:);
If you want a radius other than one, multiply the second line by the desired radius, R.
Note: If you use 'rand' rather than 'randn' in the above, the distribution will not be statistically uniform.
  3 个评论
Image Analyst
Image Analyst 2016-6-12
Another very clever gem from Roger. He's amazing. So clever that I added it to the FAQ.
+1 vote. (David you too can also vote as well as accept an answer).
Roger Stafford
Roger Stafford 2016-6-12
@Image Analyst: Thank you for putting my solution on FAQ. However, one statement there isn’t correct: “At this point the points can be anywhere inside a solid square cube.” The points were generated by ‘randn’, not ‘rand’, and they can lie anywhere in the entire infinite three-dimensional universe in accordance with the independent three dimensional normal distribution. I have taken the liberty of altering that line to read: “At this point the points can be anywhere in 3D space.”

请先登录,再进行评论。

更多回答(3 个)

Image Analyst
Image Analyst 2016-6-11
Calculate phi and theta for each of the points. Then bin them and take a specified number of points from each bin.
  2 个评论
David Pesetsky
David Pesetsky 2016-6-11
I'm hoping for more of a populating function because there will be areas where no points are in a bin that I want some points in.
David Pesetsky
David Pesetsky 2016-6-11
I think if I use rand to return random x's, y's, and z's, then find the vector length of each and scale each to the sphere radius I want, that should work.
Not sure of the elegant way to code that, but seems like it will work.

请先登录,再进行评论。


John D'Errico
John D'Errico 2016-6-11
You say that you want it "random" in some sense. But then your comment indicates that you don't want areas where there are no points. The problem is that at SOME fine-ness, a random sampling will always have holes in it. That is the nature of randomnity (I may have just coined that word.)
If you choose to bin things so that there are some points in one bin, and others in an adjacent bin, then there is a decent chance that the points in both bins 1 and 2, by random chance, may all lie away from the common edge. If you have enough bins, the chance of this happening in SOME bin are actually very good. In that case, you will perceive a hole in the sampling.
This will happen not matter how you do any random sampling. So really, you don't want a random sampling, even though you say you do.
In fact, you probably want some variation of sampling that has all points in some way uniformly distant from their neighbors. I'd suggest the idea of looking for a uniform tiling of a sphere, so maybe this as a starting point.
  1 个评论
David Pesetsky
David Pesetsky 2016-6-11
Almost. I cannot control the density of the surface points:
[B,V] = bucky;
x=V(:,1);
y=V(:,2);
z=V(:,3);
k = boundary(x,y,z,0);
trisurf(k,x,y,z,'Facecolor','red','FaceAlpha',0.1);

请先登录,再进行评论。


Image Analyst
Image Analyst 2016-6-11
Use the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_set_of_random_locations_within_a_circle.3F It should be a simple matter to add a "z" vector and additional angle. One other change you need to make is to make the radius a constant instead of a list of random numbers.

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by