Está en la página 1de 11

TRABAJO INDIVIDUAL DE LA TAREA 1

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) 𝑦(𝑡) = 𝑥(−𝑎𝑡 − 𝑎)

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:


𝑡
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) 𝑦(𝑛) = −𝑥(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)

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:


𝑛
b) 𝑧(𝑛) = 𝑥(− 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:

𝑦̈ (𝑡) + 4𝑏𝑦̇ (𝑡) + by(𝑡) = 𝑥(𝑡)


Constante a= 2

• Obtener la ecuación característica del sistema


La ecuación característica utilizamos el operador Derivada

𝑆 2 + 8𝑆 + 2 = 0

• Hallar las raíces


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

−𝑏 ± √𝑏 2 − 4𝑎𝑐
𝑋=
2𝑎

𝑎=1 𝑏=8 𝑐=2

−(8) ± √𝑏(8)2 − 4(1)(2)


𝑋=
2(1)

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

−8 ± √56
𝑋=
2
Raíces
𝑅1 = −0.26
𝑅2 = −7.74

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

ℎ(𝑡) = 𝐾1 𝑒 −0.26(𝑡) + 𝐾2 𝑒 −7.74(𝑡)

𝑦(0) = 0

𝑦(0) = 1

ℎ(0) = 𝐾1 𝑒 −0.26(0) + 𝐾2 𝑒 −7.74(0)

𝐾1 + 𝐾2 = 0

𝐾1 = −𝐾2

ℎ(0) = −0.26𝐾1 − 7.74𝐾2 = 1

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

−7.48 𝐾2= 1

1
𝐾2= = −0,13
−7,48

ℎ(𝑡) = −0,13−0.26(𝑡) + (−0,13)−7.74(𝑡)

ℎ(𝑡) = −0,13−0.26(𝑡) −0,13−7.74(𝑡)


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=963
f917c

También podría gustarte