概要
|
このファイルの ベクター画像 (SVG) が利用できます。 使う目的に対し、元画像よりもSVGがより優れている場合、SVG画像を使用して下さい。
|
|
Long description
Cardioid is an image of circle under complex map [1]. It can be seen in nature[2]
where :
- is a circle with center at the origin and radius=1/2
- is a complex map from circle to cardioid
or in other words :
Explicit equation of this map is :
Compare with inverse multiplier map [3]:
Maxima source code
/*
batch file for maxima
conformal mapping from :
the circle with center=0 and radius=1/2
given by equation : abs(2*z)=1
where : z:x+y*%i=r*cos(t)+%i*r*sin(t) =
onto
cardioid ( boundary of main hyperbolic component of Mandelbrot set
is given by equation:
c:w-w*w;
based on :Conformal Mappings And The Area Of The Mandelbrot Set by David Allingham page 18
http://www.eng.warwick.ac.uk/staff/doa/reports/allingham-thesis1995.pdf アーカイブされたコピー at the Wayback Machine
*/
/* conformal map */
f(w):=w-w*w;
iMax:100; /* number of points to draw */
dt:1/iMax;
/*
circle D={w:abs(2w)=1 } where w=l(t)
t is angle in turns ; 1 turn = 360 degree = 2*Pi radians
*/
l(t):=%e^(%i*t*2*%pi)/2;
/* point to point method of drawing */
t:0; /* angle in turns */
/* compute first point of curve, create list and save point to this list */
/* point of unit circle w:l(t); */
w:rectform(ev(l(t), numer));
circleList:makelist (w, j, 1, 1);
for i:1 thru iMax step 1 do
block
(t:t+dt,
w:rectform(ev(l(t), numer)),
circleList:cons(w,circleList)
);
/* convert one list into 2 lists */
xxCircle:map(realpart, circleList);
yyCircle:map(imagpart, circleList);
/* conformal mapping from circle to cardioid */
cardioidList: map(f, circleList);
/* convert one list into 2 lists */
xxCardioid:map(realpart, cardioidList);
yyCardioid:map(imagpart, cardioidList);
load(draw); /* Mario Rodríguez Riotorto http://www.telefonica.net/web2/biomates/maxima/gpdraw/index.html アーカイブされたコピー at the Wayback Machine */
draw(file_name = "a",
pic_width=1000,
pic_height= 500,
terminal = 'png,
columns = 2,
gr2d(title = " circle D={w:abs(2*w)=1 } ",
points_joined =true,
color = red,
point_type = 0,
points(xxCircle,yyCircle)),
gr2d(title = "cardioid {c: c = w - w*w } ",
points_joined =true,
color = blue,
point_type = 0,
points(xxCardioid,yyCardioid))
);
References
- ↑ 3D-XplorMath \ Conformal Maps \ a*z^b+b*z
- ↑ Cardioid as a shadow of ring. Foto by Sebastian Tkacz
- ↑ Boundary of components of Mandelbrot set computed using boundary equations
ライセンス
この作品の著作権者である私は、この作品を以下のライセンスで提供します。
- あなたは以下の条件に従う場合に限り、自由に
- 共有 – 本作品を複製、頒布、展示、実演できます。
- 再構成 – 二次的著作物を作成できます。
- あなたの従うべき条件は以下の通りです。
- 表示 – あなたは適切なクレジットを表示し、ライセンスへのリンクを提供し、変更があったらその旨を示さなければなりません。これらは合理的であればどのような方法で行っても構いませんが、許諾者があなたやあなたの利用行為を支持していると示唆するような方法は除きます。
- 継承 – もしあなたがこの作品をリミックスしたり、改変したり、加工した場合には、あなたはあなたの貢献部分を元の作品とこれと同一または互換性があるライセンスの下に頒布しなければなりません。
https://creativecommons.org/licenses/by-sa/3.0CC BY-SA 3.0 Creative Commons Attribution-Share Alike 3.0 truetrue
|
この文書は、フリーソフトウェア財団発行のGNUフリー文書利用許諾書 (GNU Free Documentation License) 1.2またはそれ以降のバージョンの規約に基づき、複製や再配布、改変が許可されます。不可変更部分、表紙、背表紙はありません。このライセンスの複製は、GNUフリー文書利用許諾書という章に含まれています。http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
|
あなたは上記のライセンスから、どれか一つ以上を選択できます。