All Samples(6) | Call(0) | Derive(0) | Import(6)
src/s/c/scipy-lecture-notes-HEAD/advanced/advanced_numpy/examples/mandelplot.py scipy-lecture-notes(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]
src/s/c/scipy-lectures.github.com-HEAD/_downloads/mandelplot8.py scipy-lectures.github.com(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]
src/s/c/scipy-lectures.github.com-HEAD/_downloads/mandelplot6.py scipy-lectures.github.com(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]
src/s/c/scipy-lectures.github.com-HEAD/_downloads/mandelplot1.py scipy-lectures.github.com(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]
src/s/c/scipy-lectures.github.com-HEAD/_downloads/mandelplot.py scipy-lectures.github.com(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]
src/a/d/advanced-numpy-tutorial-HEAD/data/mandelplot.py advanced-numpy-tutorial(Download)
import numpy as np import mandel x = np.linspace(-1.7, 0.6, 1000) y = np.linspace(-1.4, 1.4, 1000) c = x[None,:] + 1j*y[:,None]