Está en la página 1de 75

%borrar variables de la ventana de comandos

clc
%Limpiar comandos
clear all
%Limpiando las variables
close all
nombre = 'Quispe Mercado Luis Angel'
auxiliar = 'Est. Limachi Calani Sergio Gerardo'
carrera = 'INGENIERIA MECATRONICA'
universidad = 'UMSA - Facultad de Ingenieria'
materia = 'AUX. Controles Automaticos MEC 430'
gestion = ' I / 2021'

nombre =

'Quispe Mercado Luis Angel'

auxiliar =

'Est. Limachi Calani Sergio Gerardo'

carrera =

'INGENIERIA MECATRONICA'

universidad =

'UMSA - Facultad de Ingenieria'

materia =

'AUX. Controles Automaticos MEC 430'

gestion =

' I / 2021'

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms t s % Declaramos variables simbólicas
f = (1) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f,t,s) % Determinamos la Transformada de f

f =

trans_lapl =

1/s

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
f = exp(a*t) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f) % Determinamos la Transformada de f

f =

exp(a*t)

trans_lapl =

-1/(a - s)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
f = cos(a*t) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f) % Determinamos la Transformada de f

f =

cos(a*t)

trans_lapl =

s/(a^2 + s^2)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
assume(a > 0); % Damos un valor asumido para la respuesta
f = heaviside(t-a) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f) % Determinamos la Transformada de f

f =

heaviside(t - a)

trans_lapl =

exp(-a*s)/s

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
f = (t^2) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f) % Determinamos la Transformada de f

f =

t^2

trans_lapl =

2/s^3

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
f = sin(a*t) % Definimos la ecuacion para LaPlace
trans_lapl = laplace(f) % Determinamos la Transformada de f

f =

sin(a*t)

trans_lapl =

a/(a^2 + s^2)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms y f t s% Declaramos variables simbólicas
t = 0:0.05:10
y = (t-1).*heaviside(t-1) - (t-1).*heaviside(t-3) % Definimos la
ecuacion para LaPlace
plot(t,y) %Graficamos la funcion

%f = (t-1).*(heaviside(t-1) - heaviside(t-3));
%trans_lapl = laplace(f) % Determinamos la Transformada de f

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

1
3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

2
Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

y =

Columns 1 through 7

0 0 0 0 0 0 0

Columns 8 through 14

0 0 0 0 0 0 0

Columns 15 through 21

0 0 0 0 0 0 0

Columns 22 through 28

0.0500 0.1000 0.1500 0.2000 0.2500 0.3000 0.3500

Columns 29 through 35

0.4000 0.4500 0.5000 0.5500 0.6000 0.6500 0.7000

Columns 36 through 42

0.7500 0.8000 0.8500 0.9000 0.9500 1.0000 1.0500

Columns 43 through 49

1.1000 1.1500 1.2000 1.2500 1.3000 1.3500 1.4000

3
Columns 50 through 56

1.4500 1.5000 1.5500 1.6000 1.6500 1.7000 1.7500

Columns 57 through 63

1.8000 1.8500 1.9000 1.9500 1.0000 0 0

Columns 64 through 70

0 0 0 0 0 0 0

Columns 71 through 77

0 0 0 0 0 0 0

Columns 78 through 84

0 0 0 0 0 0 0

Columns 85 through 91

0 0 0 0 0 0 0

Columns 92 through 98

0 0 0 0 0 0 0

Columns 99 through 105

0 0 0 0 0 0 0

Columns 106 through 112

0 0 0 0 0 0 0

Columns 113 through 119

0 0 0 0 0 0 0

Columns 120 through 126

0 0 0 0 0 0 0

Columns 127 through 133

0 0 0 0 0 0 0

Columns 134 through 140

0 0 0 0 0 0 0

Columns 141 through 147

4
0 0 0 0 0 0 0

Columns 148 through 154

0 0 0 0 0 0 0

Columns 155 through 161

0 0 0 0 0 0 0

Columns 162 through 168

0 0 0 0 0 0 0

Columns 169 through 175

0 0 0 0 0 0 0

Columns 176 through 182

0 0 0 0 0 0 0

Columns 183 through 189

0 0 0 0 0 0 0

Columns 190 through 196

0 0 0 0 0 0 0

Columns 197 through 201

0 0 0 0 0

5
Published with MATLAB® R2020a

6
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms y f t s% Declaramos variables simbólicas
%t = 0:0.05:10
%y = (t-1).*heaviside(t-1) - (t-1).*heaviside(t-3) % Definimos la
ecuacion para LaPlace
%plot(t,y) %Graficamos la funcion

f = (t-1).*(heaviside(t-1) - heaviside(t-3));
trans_lapl = laplace(f) % Determinamos la Transformada de f

trans_lapl =

-(exp(-3*s)*(2*s - exp(2*s) + 1))/s^2

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
%t = 0:0.05:10
%f = cos(2*t); % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
%plot(t,f) %Graficamos la funcion
%axis([0 10 -1.5 1.5])
f1 = cos(2*t)
trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
num = [1 0] % Numerador
dem = [1 0 4] % Denominador
printsys(num,dem)
pzmap(num,dem) % Mostramos la grafica
estabilidad = 'El sistema es INESTABLE'

f1 =

cos(2*t)

trans_lapl =

s/(s^2 + 4)

num =

1 0

dem =

1 0 4

num/den =

s
-------
s^2 + 4

estabilidad =

'El sistema es INESTABLE'

1
Published with MATLAB® R2020a

2
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
t = 0:0.05:10
f = cos(2*t); % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
plot(t,f) %Graficamos la funcion
axis([0 10 -1.5 1.5])
%f1 = cos(2*t)
%trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
%num = [1 0] % Numerador
%dem = [1 0 4] % Denominador
%printsys(num,dem)
%pzmap(num,dem) % Mostramos la grafica
%estabilidad = 'El sistema es ESTABLE'

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

1
Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

2
7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

3
Published with MATLAB® R2020a

4
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
%t = 0:0.05:10
%f = cos(2*t).*exp(2*t); % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
%plot(t,f) %Graficamos la funcion
f1 = cos(2*t).*exp(2*t)
trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
num = [1 -2] % Numerador
dem = [1 4 8] % Denominador
printsys(num,dem)
pzmap(num,dem) % Mostramos la grafica
axis([-2.5 3 -3 3])
estabilidad = 'El sistema es INESTABLE'

f1 =

cos(2*t)*exp(2*t)

trans_lapl =

(s - 2)/((s - 2)^2 + 4)

num =

1 -2

dem =

1 4 8

num/den =

s - 2
-------------
s^2 + 4 s + 8

estabilidad =

'El sistema es INESTABLE'

1
Published with MATLAB® R2020a

2
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
t = 0:0.05:10
f = cos(2*t).*exp(2*t); % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
plot(t,f) %Graficamos la funcion

%f1 = cos(2*t)
%trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
%num = [1 0] % Numerador
%dem = [1 0 4] % Denominador
%printsys(num,dem)
%pzmap(num,dem) % Mostramos la grafica
%estabilidad = 'El sistema es ESTABLE'

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

1
Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

2
7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

3
Published with MATLAB® R2020a

4
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
%t = 0:0.05:10
%f = cos(2*t).*exp(2*t); % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
%plot(t,f) %Graficamos la funcion
f1 = sin(t-2*pi)
trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
num = [1] % Numerador
dem = [1 0 1] % Denominador
printsys(num,dem)
pzmap(num,dem) % Mostramos la grafica
axis([-1 1 -1.5 1.5])
estabilidad = 'El sistema es ESTABLE'

f1 =

sin(t)

trans_lapl =

1/(s^2 + 1)

num =

dem =

1 0 1

num/den =

1
-------
s^2 + 1

estabilidad =

'El sistema es ESTABLE'

1
Published with MATLAB® R2020a

2
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t s% Declaramos variables simbólicas
t = 0:0.05:10
f = sin(t-2*pi) % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
plot(t,f) %Graficamos la funcion
axis([0 10 -1.5 1.5])
%f1 = sin(t-2*pi)
%trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
%num = [1] % Numerador
%dem = [1 0 1] % Denominador
%printsys(num,dem)
%pzmap(num,dem) % Mostramos la grafica
%axis([-1 1 -1.5 1.5])
%estabilidad = 'El sistema es ESTABLE'

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

1
Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

2
7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

f =

Columns 1 through 7

0.0000 0.0500 0.0998 0.1494 0.1987 0.2474 0.2955

Columns 8 through 14

0.3429 0.3894 0.4350 0.4794 0.5227 0.5646 0.6052

Columns 15 through 21

0.6442 0.6816 0.7174 0.7513 0.7833 0.8134 0.8415

Columns 22 through 28

0.8674 0.8912 0.9128 0.9320 0.9490 0.9636 0.9757

Columns 29 through 35

0.9854 0.9927 0.9975 0.9998 0.9996 0.9969 0.9917

3
Columns 36 through 42

0.9840 0.9738 0.9613 0.9463 0.9290 0.9093 0.8874

Columns 43 through 49

0.8632 0.8369 0.8085 0.7781 0.7457 0.7115 0.6755

Columns 50 through 56

0.6378 0.5985 0.5577 0.5155 0.4720 0.4274 0.3817

Columns 57 through 63

0.3350 0.2875 0.2392 0.1904 0.1411 0.0915 0.0416

Columns 64 through 70

-0.0084 -0.0584 -0.1082 -0.1577 -0.2069 -0.2555 -0.3035

Columns 71 through 77

-0.3508 -0.3971 -0.4425 -0.4868 -0.5298 -0.5716 -0.6119

Columns 78 through 84

-0.6506 -0.6878 -0.7232 -0.7568 -0.7885 -0.8183 -0.8460

Columns 85 through 91

-0.8716 -0.8950 -0.9162 -0.9351 -0.9516 -0.9658 -0.9775

Columns 92 through 98

-0.9868 -0.9937 -0.9981 -0.9999 -0.9993 -0.9962 -0.9905

Columns 99 through 105

-0.9825 -0.9719 -0.9589 -0.9435 -0.9258 -0.9058 -0.8835

Columns 106 through 112

-0.8589 -0.8323 -0.8035 -0.7728 -0.7401 -0.7055 -0.6692

Columns 113 through 119

-0.6313 -0.5917 -0.5507 -0.5083 -0.4646 -0.4198 -0.3739

Columns 120 through 126

-0.3271 -0.2794 -0.2311 -0.1822 -0.1328 -0.0831 -0.0332

Columns 127 through 133

4
0.0168 0.0668 0.1165 0.1660 0.2151 0.2637 0.3115

Columns 134 through 140

0.3586 0.4048 0.4500 0.4941 0.5369 0.5784 0.6185

Columns 141 through 147

0.6570 0.6938 0.7290 0.7623 0.7937 0.8231 0.8504

Columns 148 through 154

0.8757 0.8987 0.9195 0.9380 0.9542 0.9679 0.9793

Columns 155 through 161

0.9882 0.9946 0.9985 1.0000 0.9989 0.9954 0.9894

Columns 162 through 168

0.9808 0.9699 0.9565 0.9407 0.9226 0.9022 0.8795

Columns 169 through 175

0.8546 0.8276 0.7985 0.7674 0.7344 0.6996 0.6630

Columns 176 through 182

0.6247 0.5849 0.5436 0.5010 0.4571 0.4121 0.3661

Columns 183 through 189

0.3191 0.2713 0.2229 0.1739 0.1245 0.0747 0.0248

Columns 190 through 196

-0.0252 -0.0752 -0.1249 -0.1743 -0.2233 -0.2718 -0.3195

Columns 197 through 201

-0.3665 -0.4125 -0.4575 -0.5014 -0.5440

5
Published with MATLAB® R2020a

6
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
%t= 0:0.05:10
%f = sin(t-2*pi).*heaviside(t-2*pi) % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
%plot(t,f) %Graficamos la funcion
%axis([0 10 -1 1.5])
f1 = sin(t-2*pi)*heaviside(t-2*pi)
trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
num = [1] % Numerador
dem = [2*pi 1 2*pi 1] % Denominador
printsys(num,dem)
pzmap(num,dem) % Mostramos la grafica
axis([-2 2 -1.5 1.5])
estabilidad = 'El sistema es ESTABLE'

f1 =

sin(t)*heaviside(t - 2*pi)

trans_lapl =

exp(-2*pi*s)/(s^2 + 1)

num =

dem =

6.2832 1.0000 6.2832 1.0000

num/den =

1
--------------------------------
6.2832 s^3 + s^2 + 6.2832 s + 1

estabilidad =

'El sistema es ESTABLE'

1
Published with MATLAB® R2020a

2
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
t= 0:0.05:10
f = sin(t-2*pi).*heaviside(t-2*pi) % Definimos la ecuacion funcion t
%Ahora el arreglo para el dominio T
plot(t,f) %Graficamos la funcion
axis([0 10 -1 1.5])
%f1 = sin(t-2*pi)*heaviside(t-2*pi)
%trans_lapl = laplace(f1) % Determinamos la Transformada de f
% Ahora el arreglo para el dominio S
%num = [1*(1/(1+2*s))] % Numerador
%dem = [1 0 1] % Denominador
%printsys(num,dem)
%pzmap(num,dem) % Mostramos la grafica
%axis([-1 1 -1.5 1.5])
%estabilidad = 'El sistema es ESTABLE'

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

1
Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

2
7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

f =

Columns 1 through 7

0 0 0 0 0 0 0

Columns 8 through 14

0 0 0 0 0 0 0

Columns 15 through 21

0 0 0 0 0 0 0

Columns 22 through 28

0 0 0 0 0 0 0

Columns 29 through 35

0 0 0 0 0 0 0

3
Columns 36 through 42

0 0 0 0 0 0 0

Columns 43 through 49

0 0 0 0 0 0 0

Columns 50 through 56

0 0 0 0 0 0 0

Columns 57 through 63

0 0 0 0 0 0 0

Columns 64 through 70

0 0 0 0 0 0 0

Columns 71 through 77

0 0 0 0 0 0 0

Columns 78 through 84

0 0 0 0 0 0 0

Columns 85 through 91

0 0 0 0 0 0 0

Columns 92 through 98

0 0 0 0 0 0 0

Columns 99 through 105

0 0 0 0 0 0 0

Columns 106 through 112

0 0 0 0 0 0 0

Columns 113 through 119

0 0 0 0 0 0 0

Columns 120 through 126

0 0 0 0 0 0 0

Columns 127 through 133

4
0.0168 0.0668 0.1165 0.1660 0.2151 0.2637 0.3115

Columns 134 through 140

0.3586 0.4048 0.4500 0.4941 0.5369 0.5784 0.6185

Columns 141 through 147

0.6570 0.6938 0.7290 0.7623 0.7937 0.8231 0.8504

Columns 148 through 154

0.8757 0.8987 0.9195 0.9380 0.9542 0.9679 0.9793

Columns 155 through 161

0.9882 0.9946 0.9985 1.0000 0.9989 0.9954 0.9894

Columns 162 through 168

0.9808 0.9699 0.9565 0.9407 0.9226 0.9022 0.8795

Columns 169 through 175

0.8546 0.8276 0.7985 0.7674 0.7344 0.6996 0.6630

Columns 176 through 182

0.6247 0.5849 0.5436 0.5010 0.4571 0.4121 0.3661

Columns 183 through 189

0.3191 0.2713 0.2229 0.1739 0.1245 0.0747 0.0248

Columns 190 through 196

-0.0252 -0.0752 -0.1249 -0.1743 -0.2233 -0.2718 -0.3195

Columns 197 through 201

-0.3665 -0.4125 -0.4575 -0.5014 -0.5440

5
Published with MATLAB® R2020a

6
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
prob4 = 'El problema 4 en la funcion f2 tiene e^-2t'
T_Teorema_Tras = 'Primer Teorema de Traslacion'
prob5 = 'El problema 5 en la funcion f2 tiene u(t-2*pi)'
T_Teorema_Tras = 'Segundo Teorema de Traslacion'

prob4 =

'El problema 4 en la funcion f2 tiene e^-2t'

T_Teorema_Tras =

'Primer Teorema de Traslacion'

prob5 =

'El problema 5 en la funcion f2 tiene u(t-2*pi)'

T_Teorema_Tras =

'Segundo Teorema de Traslacion'

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (5/(3*(s-2)))-(2/(3*(s+1))) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

5/(3*s - 6) - 2/(3*s + 3)

5 2
------- - -------
3 s - 6 3 s + 3

trans_ilapl =

(5*exp(2*t))/3 - (2*exp(-t))/3

exp(2 t) 5 2 exp(-t)
---------- - ---------
3 3

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (1/(s^2-2*s+9)) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

1/(s^2 - 2*s + 9)

1
------------
2
s - 2 s + 9

trans_ilapl =

(2^(1/2)*exp(t)*sin(2*2^(1/2)*t))/4

sqrt(2) exp(t) sin(2 sqrt(2) t)


-------------------------------
4

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (2*s/(s^2+1)^2) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

(2*s)/(s^2 + 1)^2

2 s
---------
2 2
(s + 1)

trans_ilapl =

t*sin(t)

t sin(t)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (exp(-6*s)/(s)^2) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

exp(-6*s)/s^2

exp(-6 s)
---------
2
s

trans_ilapl =

heaviside(t - 6)*(t - 6)

heaviside(t - 6) (t - 6)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (10/(s+2)^4) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

10/(s + 2)^4

10
--------
4
(s + 2)

trans_ilapl =

(5*t^3*exp(-2*t))/3

3
t exp(-2 t) 5
--------------
3

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (2*s+3/(s^2+6*s+13)) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

2*s + 3/(s^2 + 6*s + 13)

3
2 s + -------------
2
s + 6 s + 13

trans_ilapl =

2*dirac(1, t) + (3*sin(2*t)*exp(-3*t))/2

sin(2 t) exp(-3 t) 3
2 dirac'(t) + --------------------
2

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (3/(s*(s^2+4))) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

3/(s*(s^2 + 4))

3
----------
2
s (s + 4)

trans_ilapl =

3/4 - (3*cos(2*t))/4

3 cos(2 t) 3
- - ----------
4 4

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (-3*s/(s^2+1))+(1/(s^2+1))+(3/s) % Definimos la ecuacion para i-
LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

1/(s^2 + 1) - (3*s)/(s^2 + 1) + 3/s

1 3 s 3
------ - ------ + -
2 2 s
s + 1 s + 1

trans_ilapl =

sin(t) - 3*cos(t) + 3

sin(t) - 3 cos(t) + 3

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (-3*s/((s^2+1)*exp(pi*s)))+(1/((s^2+1)*exp(pi*s)))+(3/
(s*exp(pi*s))) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

exp(-pi*s)/(s^2 + 1) + (3*exp(-pi*s))/s - (3*s*exp(-pi*s))/(s^2 + 1)

exp(-pi s) 3 exp(-pi s) 3 s exp(-pi s)


---------- + ------------ - --------------
2 s 2
s + 1 s + 1

trans_ilapl =

3*heaviside(t - pi) + 3*cos(t)*heaviside(t - pi) - sin(t)*heaviside(t


- pi)

3 heaviside(t - pi) + 3 cos(t) heaviside(t - pi) - sin(t) heaviside(t


- pi)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (-3*s/((s^2+1)*exp(2*s)))+(1/((s^2+1)*exp(2*s)))+(3/
(s*exp(2*s))) % Definimos la ecuacion para i-LaPlace
pretty (F) % se muestra mas bonito
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty (trans_ilapl) % se muestra mas bonito

F =

exp(-2*s)/(s^2 + 1) + (3*exp(-2*s))/s - (3*s*exp(-2*s))/(s^2 + 1)

exp(-2 s) exp(-2 s) 3 s exp(-2 s) 3


--------- + ----------- - -------------
2 s 2
s + 1 s + 1

trans_ilapl =

3*heaviside(t - 2) - 3*cos(t - 2)*heaviside(t - 2) + heaviside(t -


2)*sin(t - 2)

3 heaviside(t - 2) - 3 cos(t - 2) heaviside(t - 2) + heaviside(t - 2)


sin(t

- 2)

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = ((2*s+6)/(s^2+8*s+20)) % Definimos la ecuacion para i-LaPlace
pretty(F)
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty(trans_ilapl)
%t = 0:0.05:10
%f1 = 2*exp(-4*t).*(cos(2*t) - sin(2*t)/2) % Copiamos el resultado de
% la anti transfromada en t
%plot(t,f1) % Graficamos la funcion
%axis([0 10 -0.05 2])

F =

(2*s + 6)/(s^2 + 8*s + 20)

2 s + 6
-------------
2
s + 8 s + 20

trans_ilapl =

2*exp(-4*t)*(cos(2*t) - sin(2*t)/2)

/ sin(2 t) \
exp(-4 t) | cos(2 t) - -------- | 2
\ 2 /

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
%F = ((2*s+6)/(s^2+8*s+20)) % Definimos la ecuacion para i-LaPlace
%pretty(F)
%trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
%pretty(trans_ilapl)
t = 0:0.05:10
f1 = 2*exp(-4*t).*(cos(2*t) - sin(2*t)/2) % Copiamos el resultado de
% la anti transfromada en t
plot(t,f1) % Graficamos la funcion
axis([0 10 -0.05 2])

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

Columns 57 through 63

2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

1
Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

Columns 155 through 161

2
7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

f1 =

Columns 1 through 7

2.0000 1.5475 1.1807 0.8864 0.6527 0.4693 0.3271

Columns 8 through 14

0.2184 0.1365 0.0760 0.0324 0.0018 -0.0188 -0.0318

Columns 15 through 21

-0.0393 -0.0426 -0.0431 -0.0417 -0.0390 -0.0356 -0.0319

Columns 22 through 28

-0.0281 -0.0244 -0.0209 -0.0177 -0.0148 -0.0123 -0.0101

Columns 29 through 35

-0.0082 -0.0066 -0.0053 -0.0041 -0.0032 -0.0025 -0.0019

Columns 36 through 42

-0.0014 -0.0010 -0.0007 -0.0005 -0.0003 -0.0002 -0.0001

Columns 43 through 49

3
-0.0000 0.0000 0.0001 0.0001 0.0001 0.0001 0.0001

Columns 50 through 56

0.0001 0.0001 0.0001 0.0001 0.0000 0.0000 0.0000

Columns 57 through 63

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 64 through 70

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 71 through 77

0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000

Columns 78 through 84

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 85 through 91

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 92 through 98

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 99 through 105

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 106 through 112

-0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 113 through 119

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 120 through 126

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 127 through 133

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 134 through 140

0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000

4
Columns 141 through 147

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 148 through 154

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 155 through 161

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 162 through 168

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 169 through 175

-0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 176 through 182

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 183 through 189

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 190 through 196

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 197 through 201

0.0000 0.0000 0.0000 0.0000 -0.0000

5
Published with MATLAB® R2020a

6
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
F = (((2*s+1)^2+4)/(((s+3)^2+16)*(s+5))) % Definimos la ecuacion para
i-LaPlace
pretty(F)
trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
pretty(trans_ilapl)
%t = 0:0.05:10
%f1 = (17.*exp(-5*t))/4 - (exp(-3*t).*(cos(4*t) + (39*sin(4*t))/2))/4
% Copiamos el resultado de
% la anti transfromada en t
%plot(t,f1) % Graficamos la funcion
%axis([0 10 -1.05 4])

F =

((2*s + 1)^2 + 4)/(((s + 3)^2 + 16)*(s + 5))

2
(2 s + 1) + 4
-----------------------
2
((s + 3) + 16) (s + 5)

trans_ilapl =

(17*exp(-5*t))/4 - (exp(-3*t)*(cos(4*t) + (39*sin(4*t))/2))/4

/ sin(4 t) 39 \
exp(-3 t) | cos(4 t) + ----------- |
exp(-5 t) 17 \ 2 /
------------ - ------------------------------------
4 4

Published with MATLAB® R2020a

1
clc % Limpiamos los comandos
clear all % Limpiamos las variables
close all % Cerramos procesos previos
syms f t a s% Declaramos variables simbólicas
%F = (((2*s+1)^2+4)/(((s+3)^2+16)*(s+5))) % Definimos la ecuacion para
i-LaPlace
%pretty(F)
%trans_ilapl = ilaplace(F) % Determinamos la Anti Transformada de f
%pretty(trans_ilapl)
t = 0:0.05:10
f1 = (17.*exp(-5*t))/4 - (exp(-3*t).*(cos(4*t) + (39*sin(4*t))/2))/4 %
Copiamos el resultado de
% la anti transfromada en t
plot(t,f1) % Graficamos la funcion
axis([0 10 -1.05 4])

t =

Columns 1 through 7

0 0.0500 0.1000 0.1500 0.2000 0.2500 0.3000

Columns 8 through 14

0.3500 0.4000 0.4500 0.5000 0.5500 0.6000 0.6500

Columns 15 through 21

0.7000 0.7500 0.8000 0.8500 0.9000 0.9500 1.0000

Columns 22 through 28

1.0500 1.1000 1.1500 1.2000 1.2500 1.3000 1.3500

Columns 29 through 35

1.4000 1.4500 1.5000 1.5500 1.6000 1.6500 1.7000

Columns 36 through 42

1.7500 1.8000 1.8500 1.9000 1.9500 2.0000 2.0500

Columns 43 through 49

2.1000 2.1500 2.2000 2.2500 2.3000 2.3500 2.4000

Columns 50 through 56

2.4500 2.5000 2.5500 2.6000 2.6500 2.7000 2.7500

Columns 57 through 63

1
2.8000 2.8500 2.9000 2.9500 3.0000 3.0500 3.1000

Columns 64 through 70

3.1500 3.2000 3.2500 3.3000 3.3500 3.4000 3.4500

Columns 71 through 77

3.5000 3.5500 3.6000 3.6500 3.7000 3.7500 3.8000

Columns 78 through 84

3.8500 3.9000 3.9500 4.0000 4.0500 4.1000 4.1500

Columns 85 through 91

4.2000 4.2500 4.3000 4.3500 4.4000 4.4500 4.5000

Columns 92 through 98

4.5500 4.6000 4.6500 4.7000 4.7500 4.8000 4.8500

Columns 99 through 105

4.9000 4.9500 5.0000 5.0500 5.1000 5.1500 5.2000

Columns 106 through 112

5.2500 5.3000 5.3500 5.4000 5.4500 5.5000 5.5500

Columns 113 through 119

5.6000 5.6500 5.7000 5.7500 5.8000 5.8500 5.9000

Columns 120 through 126

5.9500 6.0000 6.0500 6.1000 6.1500 6.2000 6.2500

Columns 127 through 133

6.3000 6.3500 6.4000 6.4500 6.5000 6.5500 6.6000

Columns 134 through 140

6.6500 6.7000 6.7500 6.8000 6.8500 6.9000 6.9500

Columns 141 through 147

7.0000 7.0500 7.1000 7.1500 7.2000 7.2500 7.3000

Columns 148 through 154

7.3500 7.4000 7.4500 7.5000 7.5500 7.6000 7.6500

2
Columns 155 through 161

7.7000 7.7500 7.8000 7.8500 7.9000 7.9500 8.0000

Columns 162 through 168

8.0500 8.1000 8.1500 8.2000 8.2500 8.3000 8.3500

Columns 169 through 175

8.4000 8.4500 8.5000 8.5500 8.6000 8.6500 8.7000

Columns 176 through 182

8.7500 8.8000 8.8500 8.9000 8.9500 9.0000 9.0500

Columns 183 through 189

9.1000 9.1500 9.2000 9.2500 9.3000 9.3500 9.4000

Columns 190 through 196

9.4500 9.5000 9.5500 9.6000 9.6500 9.7000 9.7500

Columns 197 through 201

9.8000 9.8500 9.9000 9.9500 10.0000

f1 =

Columns 1 through 7

4.0000 2.2654 1.0008 0.1208 -0.4514 -0.7839 -0.9359

Columns 8 through 14

-0.9575 -0.8903 -0.7681 -0.6170 -0.4570 -0.3022 -0.1623

Columns 15 through 21

-0.0428 0.0535 0.1263 0.1768 0.2073 0.2207 0.2205

Columns 22 through 28

0.2096 0.1913 0.1682 0.1426 0.1165 0.0912 0.0678

Columns 29 through 35

0.0471 0.0294 0.0148 0.0033 -0.0053 -0.0113 -0.0151

Columns 36 through 42

-0.0171 -0.0176 -0.0170 -0.0157 -0.0138 -0.0117 -0.0095

3
Columns 43 through 49

-0.0073 -0.0053 -0.0035 -0.0020 -0.0008 0.0001 0.0008

Columns 50 through 56

0.0013 0.0016 0.0017 0.0017 0.0016 0.0015 0.0013

Columns 57 through 63

0.0011 0.0009 0.0006 0.0005 0.0003 0.0002 0.0001

Columns 64 through 70

-0.0000 -0.0001 -0.0001 -0.0002 -0.0002 -0.0002 -0.0001

Columns 71 through 77

-0.0001 -0.0001 -0.0001 -0.0001 -0.0001 -0.0000 -0.0000

Columns 78 through 84

-0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 85 through 91

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 92 through 98

0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 99 through 105

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 106 through 112

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000

Columns 113 through 119

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 120 through 126

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 127 through 133

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 134 through 140

4
-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 141 through 147

-0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 148 through 154

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 155 through 161

0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 162 through 168

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 169 through 175

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000

Columns 176 through 182

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 183 through 189

0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000

Columns 190 through 196

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000

Columns 197 through 201

-0.0000 -0.0000 -0.0000 -0.0000 -0.0000

5
Published with MATLAB® R2020a

También podría gustarte