You are on page 1of 11

COVER PAGE

STI COLLEGE LAS PIÑAS


ALABANG-ZAPOTE RD. PAMPLONA TRES LAS PIÑAS CITY

LABORATORY EXPERIMENT 2.1


CONTINUOUS-TIME SIGNAL MANIPULATION

MANIPULA, JOANNA T.
BSCPE 311

SUBMITTED TO:
ENGR. ROMNICK CARTUSIANO

15 MARCH 2023
Laboratory Exercise
Continuous-Time Signal Manipulation
1. Generate a discrete time signal as shown below:

//Joanna Manipula
//BSCPE 321
//Continuous-Time Signal Manipulation

x = [0,3,,9,0,4,1,6]
t= [-2:4]

plot2d4(t,x)

GRAPH:
2. Apply constant scaling to the original signal by multiplying it by 5. What do you
observe?

//Joanna Manipula
//BSCPE 321
//Continuous-Time Signal Manipulation

x = [0 3 9 0 4 1 6]
t= [-2:4];

plot2d4(t,x)

x = 5*x;
t= [-2:4];

plot2d3(t,x)

GRAPH:
3. Apply time shifting to the signal as shown below.

//Joanna Manipula
//BSCPE 321
//Continuous-Time Signal Manipulation

x = [0 3 9 0 4 1 6]
t= [-2:4];

plot2d4(t,x)

x = 5*x;
t= [-2:4];

plot2d3(t,x)

x=x;
t=[-2:4];

plot2d3(t-2,x)
4. Apply time reversal as shown below.

//Joanna Manipula
//BSCPE 321
//Continuous-Time Signal Manipulation

x = [0 3 9 0 4 1 6]
t= [-2:4];

plot2d4(t,x)

x = 5*x;
t= [-2:4];

plot2d3(t,x)

x=x;
t=[-2:4];

plot2d3(t-2,x)

x=x;
t=[-2:4];

plot2d3(-t,x)
5. Apply the manipulations below and execute this in Scilab. Draw the manipulated signal
and write your observation.

//5a
t = [-2:4];
x = (-2*t)+4;
plot2d4(-t,x)
clf

//5b
t = [-2:4];
x = -t-3;
plot2d4(-t,x)
clf

//5c
t = [-2:4];
x = (-t/3)+3;
plot2d4(-t,x)

clf

//5d
t = [-2:4];
x = (5*t)-4;
x = 0.3*x
plot2d4(-t,x)

You might also like