Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Mandelbrot-set/PARI-GP/mandelbrot-set.parigp
Normal file
7
Task/Mandelbrot-set/PARI-GP/mandelbrot-set.parigp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
mandelbrot() =
|
||||
{
|
||||
forstep(y=-1, 1, 0.05,
|
||||
forstep(x=-2, 0.5, 0.0315,
|
||||
print1(((c)->my(z=c);for(i=1,20,z=z*z+c;if(abs(z)>2,return(" ")));"#")(x+y*I)));
|
||||
print());
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue