Practica 1
Practica 1
Practica 1
Realizado por:
David Mejía
Andrea Trujillo
Docente:
Ing. Diego Chacón
Fecha: 27/04/2017
Objetivos
>>T=1/10000;
>>t= [-1: T:20000]
Para apreciar mejor
>> T=0.05
T=
0.0500
>>
>> t=[-1:T:1]
t=
Columns 1 through 5
Columns 6 through 10
Columns 11 through 15
Columns 16 through 20
Columns 21 through 25
Columns 26 through 30
Columns 36 through 40
Column 41
1.0000
4. Genere una señal diente de sierra periódica con período igual a 1/10
segundos
T=1/10;
t=[-1:T:5];
saw=sawtooth(2*pi*t);
plot(t,saw);
5. Genere una señal igual a sin(t-0.5)
>> T=1/10;
t=[-1:T:5];
s=sin(t-0.5);
plot(t,s)
6. Grafique estas 4 señales en una sola hoja usando subplot y plot; a la última
gráfica fíjele un eje de tiempo entre -2 y 2 y un eje de amplitudes entre -2 y 2.
A la tercera póngale grilla. A la segunda póngale un título. A la primera
póngale nombre a los ejes.
>>T=1/10000;
t= [-1: T:20000];
x3=exp(-2+3*cos(20*pi*t)+sin(40*pi*t));
ylabel('x(t)');
xlabel('t');
subplot(2,2,1);plot(t,x3,'b');
T=1/10;
t=[-1:T:5];
cuad=square(2*pi*t);
subplot(2,2,2);plot(t,cuad,'b');
title('Señal cuadrada');
saw=sawtooth(2*pi*t);
subplot(2,2,3);plot(t,saw,'b');
grid on;
s=sin(t-0.5);
axis([-2 2 -2 2]);
subplot(2,2,4);plot(t,s,'b');
7. Genere un escalón unitario
>> v1par=0.5*(u+fliplr(u));
v1par =
Columns 1 through 5
Columns 6 through 10
Columns 11 through 15
Columns 16 through 20
Column 21
0.5000
>> v1imp=0.5*(u-fliplr(u));
v1imp =
Columns 1 through 5
Columns 6 through 10
Columns 11 through 15
Columns 16 through 20
Column 21
0.5000
9. Grafique estas 3 funciones una sobre la otra en tres figuras y colores distintos
(use stem)
ans =
Columns 1 through 5
Column 11
-1.0000
>> T=1/10;
t=[-1:T:5];
n=[-10:10];
saw=sawtooth(2*pi*t);
saw(find(n>-0.005))
ans =
Columns 1 through 5
Columns 6 through 10
Column 11
-1.0000
Bibliografía