2. Graficas 3D

2.1. Gráficos en 3D

Código fuente:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Jun 15 12:21:28 2020
Grafica seno de x cuadrado mas y cuadrado
@author: daniel
"""

from matplotlib import cm
from matplotlib.pyplot import figure, show, title
from numpy import arange, sqrt, sin, meshgrid
fig=figure()
ax=fig.gca(projection='3d')
x=arange(-5,5,0.25)
y=arange(-5,5,0.25)
x,y=meshgrid(x,y)
z=sin(sqrt(x**2+y**2))
A=ax.plot_surface(x,y,z,rstride=1, cstride=1, cmap=cm.coolwarm)
title('Prueba de figura 3 D en Python')
show()