1 parent 8a5ed6b commit 211572cCopy full SHA for 211572c
1 file changed
index.html
@@ -56,6 +56,20 @@ <h2>📝 Editor</h2>
56
plot(x => cgammaphi(-k + 1, x).x);
57
}*/
58
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
+*/
73
</textarea>
74
</div>
75
<div id="graph">
0 commit comments