// by Tim Ratigan // plots magnitude of derivative of supernecklace generating function public class supernecklace implements ComplexFunction { public Complex eval(Complex z) { // \frac{1}{(1+\log(1-z))(1-z)} Complex one = new Complex(1, 0); Complex d = (one.plus((one.minus(z)).log())).times(one.minus(z)); return d.reciprocal(); } public static void main(String[] args) { Plot2Dez.show(new supernecklace(), 512); } }