摘要
许可协议
| Public domainPublic domainfalsefalse
|
|
我,本作品著作权人,释出本作品至公有领域。这适用于全世界。 在一些国家这可能不合法;如果是这样的话,那么: 我无条件地授予任何人以任何目的使用本作品的权利,除非这些条件是法律规定所必需的。
|
(* Source code written in Mathematica 6.0, by Steve Byrnes, 2008. I release this code into the public domain. *)
plot1 = Table[
ListPlot[Table[{Re[(1 + (\[ImaginaryI] \[Pi])/n)^m],
Im[(1 + (\[ImaginaryI] \[Pi])/n)^m]}, {m, 0, n}],
PlotJoined -> True, PlotMarkers -> Automatic,
PlotRange -> {{-2.5, 1.1}, {0, \[Pi] + .05}}, AxesOrigin -> {0, 0},
AxesLabel -> {"Real part", "Imaginary part"},
PlotLabel -> "N = " <> ToString[n],
AspectRatio -> Automatic], {n, {1, 2, 3, 4, 5, 10, 20, 50, 100}}];
Export["ExpIPi.gif", plot1, "DisplayDurations" -> {2},
"AnimationRepititions" -> Infinity ]