Skip to content

Commit 211572c

Browse files
authored
Update index.html
1 parent 8a5ed6b commit 211572c

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,20 @@ <h2>📝 Editor</h2>
5656
plot(x => cgammaphi(-k + 1, x).x);
5757
}*/
5858

59+
/*
60+
function realMandelbrot(c, n) {
61+
let z = 0;
62+
for (let i = 0; i < n; i++) {
63+
z = pow(z, 2) + c;
64+
//z = sin(z) + c;
65+
}
66+
return z;
67+
}
68+
69+
for (let n = 20; n <= 100; n += 1) {
70+
plot(x => -realMandelbrot(x, n));
71+
}
72+
*/
5973
</textarea>
6074
</div>
6175
<div id="graph">

0 commit comments

Comments
 (0)