Skip to content

Commit

Permalink
keyword for origin corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
gertingold committed Jun 24, 2024
1 parent 6158a1b commit b3f4762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manuscript/parallel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ the Mandelbrot set.
def plot(data):
plt.imshow(data, extent=(xmin, xmax, ymin, ymax),
cmap='jet', origin='bottom', interpolation='none')
cmap='jet', origin='lower', interpolation='none')
plt.show()
nitermax = 2000
Expand Down Expand Up @@ -598,7 +598,7 @@ our Mandelbrot example.

def plot(data, xmin, xmax, ymin, ymax):
plt.imshow(data, extent=(xmin, xmax, ymin, ymax),
cmap='jet', origin='bottom', interpolation='none')
cmap='jet', origin='lower', interpolation='none')
plt.show()

nitermax = 2000
Expand Down

0 comments on commit b3f4762

Please sign in to comment.