|
Let us calculate the Laplace transform of the following functions.
-
Solucion:
We will use the following properties and transforms
With what we get:
Let's check the result with Scilab
t=0:0.5:20;
ft=exp(-0.4*t).*cos(12*t);
s=%s;
numfs=s+0.4;
denfs=(s+0.4)^2+12^2;
fs=syslin('c',numfs/denfs);
fs1=csim('impulse',t,fs);
subplot(2,1,1);
plot2d(t,ft,2);
xtitle('Phrasing');
xgrid;
subplot(2,1,2);
plot2d(t,fs1,1);
xtitle('Solution');
xgrid;
|
|
|
-
Solucion:
We will decompose the function as follows:
Laplace transform of us would be:
Let's check the result with Scilab.
t=0:0.5:50;
ft=sin(4*t+(%pi/3));
s=%s;
fs=(4/(s^2+4^2))*cos(%pi/3)+(s/(s^2+4^2))*sin(%pi/3);
fs2=syslin('c',fs);
fs1=csim('impulse',t,fs2);
clf;
subplot(2,1,1);
plot2d(t,ft,2);
xtitle('Phrasing');
xgrid;
subplot(2,1,2);
plot2d(t,fs1,1);
xtitle('Solution');
xgrid;
|
|
|
|