Mallado Arco 1 (grupo 59)
De MateWiki
Revisión del 11:10 1 dic 2025 de Javier R.S. (Discusión | contribuciones) (→ONDA TRANVERSAL PLANA DEL ARCO 1 EN 2D)
1 MATLAB code
h=0.1 % sampling step
u=1:h:2; % sampling of the interval [1,2]
v=0:h:2*pi+h; % sampling of the interval [0,2*pi]
[uu,vv]=meshgrid(u,v); % matrixes of u and v coordinates
figure(1)
xx=uu.*cos(vv); % parametrization
yy=uu.*sin(vv);
mesh(xx,yy,0*xx) % Draw the mesh
axis([-3,3,-3,3]) % select region for drawing
view(2) % See the pisture from the top
2 To go further
Visualization of a scalar field in a solid