Sunteți pe pagina 1din 8

I.

TRANSFORMACIONES
ABATIMIENTO O REFLEXIN (en t=0)
Se establece como eje de rotacin el eje vertical (t=0).
Ejemplo: Encontrar y(t) = x(-t), donde x(t) es:

ABATIMIENTO O REFLEXIN:
Para obtener la grfica. Tendremos en cuenta como ejemplo:
t=-4:0.1:4;
y=(1/2)*(t-5)+5;
hold on
plot(t,y);
text(3,4,'x(t)')
plot(-t,y,'red');
text(-3,4,'x(-t)')
axis([-5 5, -3 6])
grid

ESCALADO TEMPORAL:

La seal y(t) = x(at) es una versin escalada de x(t).


Si |a| > 1, estamos comprimiendo x(t) por un factor a.
Si |a| < 1, estamos expandiendo x(t) por un factor a.
Ejemplo: Dado x(t), un pulso triangular mostrado encontrar y(t) = x(3t) y
z = x(t /2).

Qu le ocurre al periodo T?
Comprubalo empleando matlab.
ESCALADO TEMPORAL:
Observamos que el Pulso triangular es peridico, por lo tanto usare t=(-1---1).
t=-1:0.01:0;
y1=t+1;
t2=0:0.01:1;
y2=-t2+1;
plot(t,y1,t2,y2)
plot(t,y1,'red',t2,y2,'green')
axis([-2 2; -2 2])

Para z= = x(3t)
y1=3*t+1;
y2=-3*t2+1;
plot(t,y1,t2,y2)
plot(t,y1,'red',t2,y2,'green');
axis([-2 2, -4 2])

Para x(1/2 t)
y1=(t/2)+1;
y2=-(t2/2)+1;
plot (t,y1,t2,y2)
plot(t,y1,'red',t2,y2,'green');
axis([-2 2, -2 2])

DESPLAZAMIENTO TEMPORAL: y(t) = x(t - t0)

y(t) es una versin desplazada t0 segundos de la seal original x(t).


Regla: Haz t - t0=0 y desplaza el origen de x(t) hasta t0.
a)

Dado x(t) = u(t+2) - u(t-2), encuentra x(t-t0) y x(t+t0).

b)
c)

Si x(t) = u(t+1)- u(t-2) determine x(t) + x(2-t).


Si x2(t), calcula 1 - x2(t).

DESPLAZAMIENTO TEMPORAL:
a) Dado x(t) = u(t+2) - u(t-2), encuentra x(t-t0) y x(t+t0).
Encontramos x(t+to)
X(t-to)=u(t+2-to)-u(t-2-to)

X(t+to)=u(t+2+to)-u(t-2+to)

b) Si x(t) = u(t+1)- u(t-2). Determine x(t) + x(2-t).


Graficando x(t) obtendremos :

Graficando x(2-t) obtendremos:


x(2-t)=u(2+t+1)-u(2-t-2)
x(2-t)=u(3-t)-u(-t)

Entonces, hallamos X(t)

+X(2-t)

c) Si x2(t), calcula 1 - x2(t).


Hallamos x2(t).

t=-1:0.01:0;
y1=t+1;
t2=0:0.01:1;
y2=-t2+1;
plot(t,y1,t2,y2)
axis([-2 2,-2 2])

De esta manera hallaremos, 1 - x2(t).


t=-1:0.01:0;
y1=t+1;
t2=0:0.01:1;
y2=-t2+1;
plot(t,1-y1,t2,1-y2)
axis([-2 2,-2 2])

S-ar putea să vă placă și