曼德布洛特集合 (Mandelbrot set)

如下方法,可以生成著名的曼德布洛特集合。 def Mandelbrot_set(): Y, X = np.mgrid[-1.3:1.3:0.005, -2:1:0.005] Z = X + 1j * Y c = tf.constant(Z.astype(np.complex64)) zs = tf.Variable© ns = tf.Variable(tf.zeros_like(c, tf.flo
相關文章
相關標籤/搜索