Skip to content

Instantly share code, notes, and snippets.

@MiguelAngelHFlores
Last active June 27, 2019 02:57
Show Gist options
  • Save MiguelAngelHFlores/71be8282895df407ac3a077d67dc9658 to your computer and use it in GitHub Desktop.
Save MiguelAngelHFlores/71be8282895df407ac3a077d67dc9658 to your computer and use it in GitHub Desktop.
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.colors import LogNorm
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = Axes3D(fig, azim = -29, elev = 49)
X = np.arange(-6, 6, 0.1)
Y = np.arange(-6, 6, 0.1)
X, Y = np.meshgrid(X, Y)
Z = (X*X+Y-11)**2 + (X+Y*Y-7)**2
ax.plot_surface(X, Y, Z, rstride = 1, cstride = 1, norm = LogNorm(), cmap = cm.jet)
plt.xlabel("x")
plt.ylabel("y")
plt.title("Función de Himmelblau")
plt.savefig("Función de Himmelblau.PNG")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment