Está en la página 1de 6

HERNNDEZ ESCOBEDO JORGE

EDUARDO 2MV1: PRCTICA


2: SEALES DISCRETAS
Ejericio 3.2.3 For the signal shown in Fig. P3.1-1b, sketch the following signals:
x[-n]
x[n+6]
x[n-6]
x[3n]
x[n/3]
x[3-n]
%*FIG. P3.1-1B:
n= -1:9;
x1 = inline ('(n).*((n>=0)&(n<3))','n');
x3 = inline ('(6-n).*((n>=3)&(n<=6))','n');
createfigure3(n,x1(n)+x3(n));

HERNNDEZ ESCOBEDO JORGE


EDUARDO 2MV1: PRCTICA 2: SEALES DISCRETAS

SOLUCIN:
%1.- x(-n)
n=-7:7;
createfigure3(n,x1(-n)+x3(-n));
xlabel('n'); ylabel('f(-n)'); grid on ;
%2.- x(n+6)
n=-7:7;
createfigure3(n,x1(n+6)+x3(n+6));
xlabel('n'); ylabel('f(n+6)'); grid on ;
%3.- x(n-6)
n=-13:13;
createfigure3(n,x1(n-6)+x3(n-6));
xlabel('n'); ylabel('f(n-6)'); grid on ;
%4.- x(3n)
n=-13:13;
createfigure3(n,x1(3*n)+x3(3*n));
xlabel('n'); ylabel('f(3*n)'); grid on;
%5.- x(n/3)
n=-20:20;
createfigure3(n,x1(n/3)+x3(n/3));
xlabel('n'); ylabel('f(n/3)'); grid on;
%6.- x(3-n)
n=-7:7;
createfigure3(n,x1(3-n)+x3(3-n));
xlabel('n'); ylabel('f(3-n)'); grid on;

HERNNDEZ ESCOBEDO JORGE


EDUARDO 2MV1: PRCTICA 2: SEALES DISCRETAS

HERNNDEZ ESCOBEDO JORGE


EDUARDO 2MV1: PRCTICA 2: SEALES DISCRETAS

HERNNDEZ ESCOBEDO JORGE


EDUARDO 2MV1: PRCTICA 2: SEALES DISCRETAS

HERNNDEZ ESCOBEDO JORGE


EDUARDO 2MV1: PRCTICA 2: SEALES DISCRETAS
Published with MATLAB R2014a

También podría gustarte