Multiplier of the periodic orbit for complex quadratic polynomial fc(z) = z^2+c
it can be used for :
- multiplier map
- internal rays
- checking stability of periodic points z
gcc m.c -Wall -lm
./a.out
c = 0.2547631498472130+0.4981666254092280*I it's multiplier = 0.9527732719049150+0.1058597981813492*I internal radius r = 0.9586361168490332 internal angle = 0.0176110004269997 period = 4
c = 0.2547631498472130+0.4981666254092280*I m(c) = 0.9527732719049150+0.1058597981813492*I r(m) = 0.9586361168490332 t(m) = 0.0176110004269997 period = 4
c = 0.2515187555828430+0.4985671735131340*I m(c) = 0.9986203343241699+0.0473040657755354*I r(m) = 0.9997400896055999 t(m) = 0.0075334459994411 period = 4
c = 0.2544182852603900+0.4974768962355820*I m(c) = 0.9694382939900951+0.1114651614377388*I r(m) = 0.9758253368655516 t(m) = 0.0182194879105317 period = 4
c = 0.2547631498472130+0.4981666254092280*I m(c) = 0.9527732719049150+0.1058597981813492*I r(m) = 0.9586361168490332 t(m) = 0.0176110004269997 period = 4
c = 0.2515187555828430+0.4985671735131340*I m(c) = 0.9986203343241699+0.0473040657755354*I r(m) = 0.9997400896055999 t(m) = 0.0075334459994411 period = 4
c = 0.2505485440476130+0.4994665165913900*I m(c) = 0.9997587038925655+0.0173230328504826*I r(m) = 0.9999087725768193 t(m) = 0.0027574357975608 period = 4
c = 0.2478165365298109-0.5027951422378466*I m(c) = 0.9902675065680364+0.0794363627215888*I r(m) = 0.9934484738963123 t(m) = 0.0127396650751574 period = 4
gcc c.c -Wall -lm
./a.out
input :
period = 4 center = 0.2822713907669138+0.5300606175785252*I
multiplier : internal angle = 0.0176110004269997 internal radius = 0.9586361168490332
otput : c = 0.2547631498472130+0.4981666254092280*I
gcc p.c -Wall -lm
./a.out
period ( c = 0.254763+0.498167) = 4
c programs for computing parameter c from it's multiplier. Use the code from mandelbrot-numerics library by Claude Heiland-Allen
c program for computing multiplier for given parameter c
c program for computing period
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
git clone git@github.com:adammaj1/multiplier.git
git add README.md
git commit -m "first commit"
git branch -M main
git push -u origin main
subdirectory
mkdir images
git add *.png
git mv *.png ./images
git commit -m "move"
git push -u origin main
to overwrite
git mv -f
Local repo
/Dokumenty/julia_p4_spiral/c/multiplier/