Diferencia entre revisiones de «Prueba curso 20162017»

De MateWiki
Saltar a: navegación, buscar
(Página creada con «dkalsdfjad Categoría:TC16/17»)
 
 
(No se muestran 4 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
 +
{{ TrabajoED | Deformaciones de una placa plana. Grupo 6-A | [[:Categoría:Teoría de Campos|Teoría de Campos]]|[[:Categoría:TC16/17|2016-17]] | Nuestros nombres }}
 +
 +
 
dkalsdfjad
 
dkalsdfjad
  
 +
ñdad
 +
 +
dflald
 +
gfdasdñf
 +
ç
 +
<math> [-1/2,1/2]\times [0,2]</math>
 +
 +
[[Archivo:Desert.jpg|miniaturadeimagen|flasfgkl<asd]]
 +
 +
==  MATLAB code  ==
 +
{{matlab|codigo=
 +
x=-0.5:0.1:0.5;      % sampling of the interval [-1/2,1/2]
 +
y=0:0.1:2;            % sampling of the interval [0,2]
 +
[xx,yy]=meshgrid(x,y); % matrixes of x and y coordinates
 +
figure(1)
 +
mesh(xx,yy,0*xx)      % Draw the mesh
 +
axis([-2,2,-1,3])      % select region for drawing
 +
view(2)                % See the picture from the top
 +
}}
  
  
  
 
[[Categoría:TC16/17]]
 
[[Categoría:TC16/17]]

Revisión actual del 15:38 17 nov 2016

Trabajo realizado por estudiantes
Título Deformaciones de una placa plana. Grupo 6-A
Asignatura Teoría de Campos
Curso 2016-17
Autores Nuestros nombres
Este artículo ha sido escrito por estudiantes como parte de su evaluación en la asignatura


dkalsdfjad

ñdad

dflald gfdasdñf ç [math] [-1/2,1/2]\times [0,2][/math]

flasfgkl<asd

MATLAB code

x=-0.5:0.1:0.5;       % sampling of the interval [-1/2,1/2]
y=0:0.1:2;            % sampling of the interval [0,2]
[xx,yy]=meshgrid(x,y); % matrixes of x and y coordinates
figure(1)
mesh(xx,yy,0*xx)       % Draw the mesh
axis([-2,2,-1,3])      % select region for drawing
view(2)                % See the picture from the top