Está en la página 1de 11

Tarea 2

Análisis en el dominio de la frecuencia

SEÑALES Y SISTEMAS

UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA (UNAD)

Grupo 203042_107

Leidy Tatiana Carvajal Vela


CC 1014282973

CIUDAD BOGOTÁ

2022 – 1604
INTRODUCCIÓN

Explicar la naturaleza y diferencia entre señales continuas y discretas, empleando


procesos matemáticos y herramientas computacionales para su modelamiento.
CUERPO

DEFINICIÓN DE CONCEPTOS:

https://view.genial.ly/6333a4f0b80d1e0011eba4a8/interactive-content-metodo-cientifico

CONSTANTE INDIVIDUAL:

a. Evidencia de la selección: Elegí la constante “a” =2

EJERCICIO 1 OPERACIONES BÁSICAS EN SEÑALES CONTINUAS

Solución paso a paso de la parte teórica:

a) y ( t ) =x(−at −a)

Solución práctica:
Código usado: Imágenes resultantes de la simulación:
%tatiana Carvajal
%203042_107
%Señales y sistemas

clc
clear all
close all

t=[-4:0.01:6];

x1=3.*tripuls(t-1,2);
figure
plot(t,x1)

x2=-2.*rectpuls (t-3.5,3)
figure
plot(t,x2)

x3=-2.*rectpuls (t+1,2)
figure
plot(t,x3)

xtot =x1+x2+x3;
figure
subplot (4,1,1)
plot(t,xtot)
title ("Señal original")
xlabel("tiempo")
ylabel("amplitud")

t1=t+2;
subplot (4,1,2)
plot(t1,xtot)
title ("Señal en
Desplazamiento")
xlabel("tiempo")
ylabel("amplitud")

t2=-t1;
subplot (4,1,3)
plot(t2,xtot)
title ("Reflexion en el
eje temporal")
xlabel("tiempo")
ylabel("amplitud")

t3=t2./2;
subplot (4,1,4)
plot(t3,xtot)
title ("Comprension de la
señal")
xlabel("tiempo")
ylabel("amplitud")

Solución paso a paso de la parte teórica:

t
a) z (t )=−ax ( + a)
a

Solución práctica:
Código usado: Imágenes resultantes de la simulación:

%tatiana Carvajal
%203042_107
%Señales y sistemas

clc
clear all
close all

t=[-4:0.01:6];

x1=3.*tripuls(t-1,2);
figure
plot(t,x1)

x2=-2.*rectpuls (t-3.5,3)
figure
plot(t,x2)

x3=-2.*rectpuls (t+1,2)
figure
plot(t,x3)

xtot =x1+x2+x3;
figure
subplot (5,1,1)
plot(t,xtot)
title ("Señal original")
xlabel("tiempo")
ylabel("amplitud")

t1=t-2;
subplot (5,1,2)
plot(t1,xtot)
title ("Señal en
Desplazamiento")
xlabel("tiempo")
ylabel("amplitud")

t2=-t1;
subplot (5,1,3)
plot(t2,xtot)
title ("Reflexion en el
eje temporal")
xlabel("tiempo")
ylabel("amplitud")

t3=t2.*2;
subplot (5,1,4)
plot(t3,xtot)
title ("Comprension de la
señal")
xlabel("tiempo")
ylabel("amplitud")

xtot2= -xtot;
subplot (5,1,5)
plot(t3,xtot2)
title ("Reflexion en la
amplitud")
xlabel("tiempo")
ylabel("amplitud")

EJERCICIO 2 OPERACIONES BÁSICAS EN SEÑALES DISCRETAS


Solución paso a paso de la parte teórica:

a) y ( n )=−x (2 n+ a)

Solución práctica:
Código usado: Imágenes resultantes de la simulación:

%tatiana Carvajal
%203042_107
%Señales y sistemas

clc
clear all
close all

x = [1,2,3,1,-3,-2,];
t = [-3,-2,-1,0,1,2];

figure
stem (t,x)

t2= t-2;
figure
stem (t2,x)

t3=-t2;
figure
stem (t3,x)

t4=t3./2;
figure
stem (t4,x)

for i=1: length(t4)

if round(t4(i))== t4(i)
x2(i)=x(i);

else
x2(i)=0;
end
end

figure
stem (t4,x2)
Nombre del estudiante: Tatiana Carvajal
Código universitario: 203042_107
Constante a: 2

Solución paso a paso de la parte teórica:

−n
b) z ( n )=x ( + a)
2

Solución práctica:
Código usado: Imágenes resultantes de la simulación:
%Tatiana Carvajal
%203042_107
%Señales y sistemas

clc
clear all
close all

x = [1,2,3,1,-3,-2,];
t = [-3,-2,-1,0,1,2];

figure
stem (t,x)

t2= t-2;
figure
stem (t2,x)

t3=-t2;
figure
stem (t3,x)

t4=t3.*2;
figure
stem (t4,x)
EJERCICIO 3 RESPUESTA AL IMPULSO DE LOS SISTEMAS LTI

Solución paso a paso de la parte teórica:

ÿ ( t ) + 4 b ẏ ( t ) +by ( t )=x ( t )
Constante a= 2

 Obtener la ecuación característica del sistema


La ecuación característica utilizamos el operador Derivada
2
S +8 S+2=0

 Hallar las raíces


Para hallar las raíces de la ecuación característica, utilizamos la ecuación
cuadrática

−b ± √ b −4 ac
2
X=
2a

a=1 b=8 c=2

−(8) ± √ b ( 8 ) −4 (1)( 2)
2
X=
2(1)

−(8)± √ 64−8
X=
2

−8 ± √ 56
X=
2
Raíces
R1=−0.26
R2=−7.74

 Encontrar la respuesta natural (ver tabla 4.1 del libro guía, Ambardar)

h ( t )=K 1 e−0.26(t )+ K 2 e−7.74 (t)

y ( 0 )=0

y ( 0 )=1

−0.26 (0) −7.74(0)


h ( 0 ) =K 1 e +K2 e

K 1 + K 2=0

K 1=−K 2

h ( 0 ) =−0.26 K 1−7.74 K 2 =1

−0,26 K 2−7.74 K 2=1

−7.48 K 2=¿1 ¿

K 1
2=¿ =−0,13 ¿
−7,48

h ( t )=−0,13−0.26(t )+(−0,13)−7.74 (t)


−0.26(t ) −7.74 (t )
h ( t )=−0,13 −0,13
BIBLIOGRAFÍA (en normas APA o IEEE)

Larson, R., y Hostetler, R. (2008). Precálculo (7a. ed.), 162-168. https://elibro-


net.bibliotecavirtual.unad.edu.co/es/ereader/unad/46801?page=1

Ambardar, A. (2002). Procesamiento de señales analógicas y digitales: Panorama.


Cengage Learning (2nd ed), 1-7.
https://link.gale.com/apps/doc/CX4060300008/GVRL?
u=unad&sid=GVRL&xid=963f917c

También podría gustarte