Você está na página 1de 8

Unidad 1 - Señales y sistemas

HAIBER DUSSÁN CANO


CÓDIGO: 7688649
No. DE GRUPO: 203042-8

PAOLA ANDREA MATEUS

UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA


SEÑALES Y SISTEMAS
15 FEBRERO 2019
1.1. Ejercicio 1- operaciones básicas en señales continuas
(Desplazamiento, reflexión y amplificación): estudiando en el libro
de (Embardar), para la señal x(t) de la figura 1, obtenga las siguientes
señales de forma gráfica (teórica), y posteriormente verifique sus
respuestas diseñando un script en Matlab, Octava o Scilab y anexando
el resultado junto con el script (práctica):

a. 𝑦(𝑡) = −𝑎𝑥(𝑡 + 𝑎) (ìtem grupal)


b. 𝑠(𝑡) = 𝑥(−𝑏𝑡 − 5)

X(t)

-2 -1 0 1 2

Señal MatLab códico

function createfigure(X1, Y1)


%CREATEFIGURE(X1, Y1)
% X1: vector of x data
% Y1: vector of y data

% Auto-generated by MATLAB on 25-Mar-2019 23:08:06

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');

% Create plot
plot(X1,Y1,'Color',[1 0 0]);
% Create ylabel
ylabel('amplitud');

% Create xlabel
xlabel('tiempo');

% Create title
title('senal continua');

% Uncomment the following line to preserve the X-limits of the axes


% xlim(axes1,[-5 5]);
box(axes1,'on');
grid(axes1,'on');

Gráfica Número 1
Remplazo constante del número de grupo al cual pertenezco es = 8

y(t) = −8x(t + 8)

paso 1 Desplazamiento (t + 8) para la izquierda y remplazando.

t = (to + 8) to = (t − 8)

Puntos Críticos

t = −2 to = −2 − 8

to = −10

t = −1 to = −1 − 8

to = −9

t = 1 to = 1 − 8

to = −7

t = 2 to = 2 − 8

to = −6

Desplazamiento

function createfigure(X1, Y1)


%CREATEFIGURE(X1, Y1)
% X1: vector of x data
% Y1: vector of y data

% Auto-generated by MATLAB on 25-Mar-2019 23:30:32

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');

% Create plot
plot(X1,Y1,'Color',[1 0 0]);
% Create ylabel
ylabel('amplitud');

% Create xlabel
xlabel('tiempo');

% Create title
title('senal despalzamiento');

% Uncomment the following line to preserve the X-limits of the axes


% xlim(axes1,[-15 0]);
box(axes1,'on');
grid(axes1,'on');

Gráfica

No hay escalamiento en el eje. multiplico por 1 para el eje de amplitud quedando así:

y(t) = −8x(t + 8) ∗ 1

código MatLab
function createfigure(X1, Y1)

%CREATEFIGURE(X1, Y1)
% X1: vector of x data
% Y1: vector of y data

% Auto-generated by MATLAB on 25-Mar-2019 23:37:44

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');

% Create plot
plot(X1,Y1,'Color',[1 0 0]);

% Create ylabel
ylabel('amplitud');

% Create xlabel
xlabel('tiempo');

% Create title
title('senal reflexion amplitud');

box(axes1,'on');
grid(axes1,'on');

Gráfica
CONCLUSIÓN
REFERENCIAS BIBLIOGRÁFICAS

Você também pode gostar