Está en la página 1de 9

TAREA 1

OPERACIONES BÁSICAS DE SEÑALES CONTINUAS Y DISCRETAS

GRUPO:
203042_129

PRESENTADO POR:
RONALD ALBERTO MARTINEZ TELLEZ
C.C. 1,122,117,309

TUTOR:
JUAN FELIPE GUTIERREZ

UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA


CIUDAD BOGOTÁ
2022
Ejercicio 1- operaciones básicas en señales continuas (Desplazamiento, reflexión y
amplificación): estudiando en el libro de (Ambardar), para la señal x(t) de la figura 1,
obtengalas siguientes señales de forma teórica, y posteriormente verifique sus respuestas
realizando el ejercicio 1 de la guía de componente práctico de la tarea 4.

a. y(𝑡) = 𝑥 (−a𝑡 − a)

b. z (t )=−ax ( at + a)

Solución

Constante a=4

c. y(𝑡) = 𝑥 (−a𝑡 −a)

y(𝑡) = 𝑥 (−4𝑡 −4)

desplazamiento
Compresión

Reflexion
Amplitud desplazamiento Comprensión
Tiempo (t) reflexión en t
(a) en t en t
-3 0 1 0.25 -0.25
-2 0 2 0.5 -0.5
-2 -2 2 0.5 -0.5
-1 -2 3 0.75 -0.75
0 -2 4 1 -1
0 0 4 1 -1
1 3 5 1.25 -1.25
2 0 6 1.5 -1.5
2 -2 6 1.5 -1.5
3 -2 7 1.75 -1.75
4 -2 8 2 -2
5 -2 9 2.25 -2.25
5 0 9 2.25 -2.25

b. z (t )=−ax ( at + a)
z (t )=−4 x ( 4t + 4)
Desplazamiento
Comprensión en A

Reflexion en A
Tiempo Amplitud desplazamiento expansión comprensión Reflexión
(t) (a) en t en t en A en A
-3 0 -7 -28 0 0
-2 0 -6 -24 0 0
-2 -2 -6 -24 -8 8
-1 -2 -5 -20 -8 8
0 -2 -4 -16 -8 8
0 0 -4 -16 0 0
1 3 -3 -12 12 -12
2 0 -2 -8 0 0
2 -2 -2 -8 -8 8
3 -2 -1 -4 -8 8
4 -2 0 0 -8 8
5 -2 1 4 -8 8
5 0 1 4 0 0

Solución practica

% Ronald Alberto Martinez


% Cedula: 1,122,117,309
% Señales y Sistemas
clc
clear all
close all
% Señal1 y(t)=x(t)
t=(-3:0.01:5);
A1=3;
x1=-2*rectpuls(t-3.5,A1);
%señal2
A2=2;
x2=3*tripuls(t-1,A2);
%Señal3
A3=2;
x3 = -2*rectpuls(t+1,A3);
%Señal total
xtot=x1+x2+x3;
subplot(4,1,1)
plot(t,xtot)
title ('Señal original - Ronald')
xlabel('tiempo')
ylabel('Amplitud')

% y(t)=x(-at-a)
% Paso 1. Desplazamiento
t2=(t+4);
subplot(4,1,2)
plot(t2,xtot,'r')
title('Señal desplazada - Ronald')
xlabel('tiempo')
ylabel('amplitud')
% Paso 3. Escalamiento
t3=(t2./4);
subplot(4,1,3)
plot(t3,xtot,'r')
title('Señal Escalada - Ronald')
xlabel('tiempo')
ylabel('amplitud')

% Paso 2. Reflexión
t4=(t3*-1);
subplot(4,1,4)
plot(t4,xtot,'r')
title('Señal Reflexionada - Ronald')
xlabel('tiempo')
ylabel('amplitud')

% Ronald Alberto Martinez


% Cedula: 1,122,117,309
% Señales y Sistemas
% Señal1 y(t)=x(t)
t=(-3:0.01:5);
A1=3;
x1=-2*rectpuls(t-3.5,A1);
%señal2
A2=2;
x2=3*tripuls(t-1,A2);
%Señal3
A3=2;
x3 = -2*rectpuls(t+1,A3);
%Señal total
xtot=x1+x2+x3;
subplot(5,1,1)
plot(t,xtot)
title ('Señal original - Ronald')
xlabel('tiempo')
ylabel('Amplitud')
% z(t)=-ax((t/a)+a)
% Paso 1. Desplazamiento
t2=(t-4);
subplot(5,1,2)
plot(t2,xtot,'r')
title('Señal desplazada- Ronald')
xlabel('tiempo')
ylabel('amplitud')
% Paso 2. Escalamiento
t3=(t2*4);
subplot(5,1,3)
plot(t3,xtot,'r')
title('Señal Escalada - Ronald')
xlabel('tiempo')
ylabel('amplitud')
% Paso 3. Escalamiento en amplitud
axtot=xtot*4;
subplot(5,1,4)
plot(t3,axtot,'r')
title('Señal Escalada en amplitud - Ronald')
xlabel('tiempo')
ylabel('amplitud')
% Paso 4. reflexion en amplitud
bxtot=axtot*-1;
subplot(5,1,5)
plot(t3,bxtot,'k')
title('Señal con reflexion en amplitud - Ronald')
xlabel('tiempo')
ylabel('amplitud')
Link de la infografía: https://view.genial.ly/632fab7279343200169faa42/interactive-content-lista-guitarra

También podría gustarte