-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-surface.py
50 lines (40 loc) · 850 Bytes
/
test-surface.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import numpy as np
import matplotlib.pyplot as plt
start = -2*np.pi
finish = 2*np.pi
N = 101
x = np.linspace(start,finish,N)
y = x.copy()
x, y = np.meshgrid(x,y)
z = 10*np.sin(np.sqrt(x**2 + y**2))
plt.style.use(['seaborn-v0_8','paper3dplot.mplstyle'])
mapa_de_color = "plasma"
fig = plt.figure(figsize=(7,7))
ax = plt.axes(projection="3d")
ax.plot_trisurf(
x.flatten(),
y.flatten(),
z.flatten(),
cmap=mapa_de_color,
linewidth=2,
antialiased=False
)
# ax.view_init(azim=-60, elev=20)
plt.title("Superficie")
ax.set_xlabel(r"$x$")
ax.set_ylabel(r"$y$")
ax.set_zlabel(r"$u(x,y)$")
fig = plt.figure(figsize=(7,6))
plt.tricontourf(
x.flatten(),
y.flatten(),
z.flatten(),
levels=10,
cmap=mapa_de_color
)
plt.colorbar()
plt.axis('equal')
plt.xlabel('x')
plt.ylabel('y')
plt.title("Contourf")
plt.show()