Geometry 如何使用mathemathica在圆的周长上生成6个点?

Geometry 如何使用mathemathica在圆的周长上生成6个点?,geometry,wolfram-mathematica,points,mathematica-8,Geometry,Wolfram Mathematica,Points,Mathematica 8,如何使用mathemathica在圆的周长上生成6个点?各点不应平均分配。非常感谢这就是您要找的吗 Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}] 或者你是想展示这些 Graphics[Point[Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}]]] 或 非常感谢。第二个版本看起来像我需要的。但他们必须在一个圆圈上。我不知道如何才能看到这些点的坐标数学专家可以在这里回答你的问题:。 points

如何使用mathemathica在圆的周长上生成6个点?各点不应平均分配。非常感谢

这就是您要找的吗

Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}]
或者你是想展示这些

Graphics[Point[Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}]]]


非常感谢。第二个版本看起来像我需要的。但他们必须在一个圆圈上。我不知道如何才能看到这些点的坐标数学专家可以在这里回答你的问题:。
points=Table[p=RandomReal[{0,2Pi}];{Cos[p],Sin[p]},{6}];
Print[points]
ParametricPlot[{Cos[phi],Sin[phi]},{phi,0,2Pi},
  Epilog->{PointSize[Large],Map[Point,points]}]