Mandelbrot set: Difference between revisions

Content added Content deleted
m (→‎{{header|Python}}: minor changes)
m (→‎{{header|Python}}: minor changes)
Line 6,390: Line 6,390:
extent=(X.min(), X.max(), Y.min(), Y.max()))</lang>
extent=(X.min(), X.max(), Y.min(), Y.max()))</lang>


Actually the same, but more suitable for teaching. It does not use performance tricks.
Actually the same, but more suitable for teaching. No tricks are used to improve performance.
<lang python>import numpy as np
<lang python>import numpy as np
import matplotlib.pyplot as plt
import matplotlib.pyplot as plt