0% found this document useful (0 votes)
21 views1 page

Practica #1 Transfor

The document contains 4 exercises analyzing the periodicity of functions. Exercises 1 and 2 are periodic while exercises 3 and 4 are non-periodic.

Uploaded by

Fernando Churqui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views1 page

Practica #1 Transfor

The document contains 4 exercises analyzing the periodicity of functions. Exercises 1 and 2 are periodic while exercises 3 and 4 are non-periodic.

Uploaded by

Fernando Churqui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

EJERCICIO 1: ES PERIODICA

clc;
clear;
t= -10:0.01:10
x= 2/3*sin(3*t/5*pi) + 5*cos(8*pi*t+pi/8);
plot(t,x,'linewidth',2), grid on;
axis ([-10 10 -8 8]);

EJERCICIO 2: ES PERIODICA
clc;
clear;
t= -10:0.01:10
x= -3*sin(5*pi*t + pi/4);
plot(t,x,'linewidth',2), grid on;
axis ([-4 4 -4 4]);

EJERCICIO 3: NO ES PERIODICA
clc;
clear;
t= -10:0.01:10
x= sin(pi*t/3) +sin(2*pi*t/5) +sin(2*pi*t+pi/6) +cos(10*pi*t-pi/3);
plot(t,x,'linewidth',2), grid on;
axis ([-10 10 -4 4]);

EJERCICIO 4: NO ES PERIODICA
clc;
clear;
t= -10:0.001:10
x= sin(2*pi*t) +sin(sqrt(2)*pi*t);
plot(t,x,'linewidth',2), grid on;
axis([-10 10 -3 3]);

You might also like