Simulacion computacional 111111

Páginas: 2 (410 palabras) Publicado: 12 de octubre de 2015
.Construya un vector con 25 elementos
y realice un estadístico sobre estos,
Calcule la desviación estándar, la media, mediana.

A=[1:1:25];
std (A)
mean(A)
Median (A)syms x;
f=exp(5*x)/log(x);
limit(f,x,0)
ans =
0

syms x;
f=(5*x+3*sin(pi*x))/(3*x-sin(2*pi*x));
limit(f,x,0)

syms x;
f=(sin(2*x))/(1-4*cos(6*x));
limit(f,x,((4*pi)/3))
Calculelas siguientes derivadas.

syms x
y=((x^2)+1*sin(3*x)+8*cos(x)*tan(x));
diff(y,x)


syms x
y=cos(4*x)/(2*x);
diff(y,x)


syms x
y=(20*x)/(x-7);
diff(y,x)
Integrales

symsx;
g=(1)/(x-20)^3;
int((g))

syms x;
g=(6*exp(2*x))-3*cos(6*x);
int((g))
ans =
3*exp(2*x) - sin(6*x)/2


syms x;
g=exp(-5*x)*sin(5*x)-x^4;
int((g))

r=[4 0 -5];
roots(r)r=[1 -6 2 0 -4];
roots(r)

e=[4 0 -5];
f=[1 -6 0 2 -4];
q=[5 1 -3 8];
t=[3 0 -1 0 -1 9]; conv(e,t)
Representar un gráfico de barras definidas
por la función 5
en el intervalode
[-5, 5] con saltos de 0.01
x=[-5:0.01:5];
y1=5*exp(-x.^2);
figure(2),plot(x,y1)
grid off
xlabel('variable x')
ylabel('amplitud')
title('5*exp(-x.^2)')X=sin(2t)+2cos(4t)
Y=2cos(5t)-3sin(t)
t=[0:0.1:(2*pi)];
x=sin(2*t)+2*cos(4*t);
y=2*cos(5*t)-3*sin(t);

figure(1),plot(t,x,'k')
xlabel('variable')
ylabel('amplitud')title('sin(2*t)+2*cos(4*t)')
grid on

syms x y
z=cos(sqrt(x.^2+y.^2))./ ((3.*x)+(2.*y));
figure(1)
ezsurf(x,y,z)
grid on

syms x y
z=((x+10.*y).*sin(4.*y));
figure(1)
ezsurf(x,y,z)
grid onConsidere el siguiente movimiento parabólico c
on una velocidad inicial de20m/s.
ang=60;
v0=20;
a=-(9.8/2);
b=v0*sind(ang);
t2=-(b/a);
t=[0:0.1:t2];
x0=0;
y0=0;rx=(v0.*cosd(ang)*t)+x0;
ry=(v0.*sind(ang))*t-((9.8*t.^2)/2)+y0;
figure
plot(rx,ry)
grid on
xlabel('COMPONENTE X')
ylabel('COMPONENTE Y')
title('MOVIMIENTO PARABOLICO DE UNA PELOTA')
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Implementación y simulación computacional de tareas robóticas
  • Simulacion computacional
  • 111111
  • 111111
  • 111111
  • 111111
  • 111111
  • 111111

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS