概要
ライセンス
| 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 ]