Exp 8
Exp 8
1
F3 = sin ( omega * t ) ;
% 6. cos (3 t ) function
F6 = cos (3* t ) ;
subplot (3 ,2 ,2) ;
ezplot ( Lap_F2 , [0 , 10]) ;
title ( ’ Laplace Transform of u ( t ) ’) ;
xlabel ( ’ Re ( s ) ’) ;
ylabel ( ’ Im ( s ) ’) ;
subplot (3 ,2 ,3) ;
ezplot ( Lap_F3 , [0 , 10]) ;
2
title ([ ’ Laplace Transform of sin ( ’ , num2str ( omega ) , ’t
) ’]) ;
xlabel ( ’ Re ( s ) ’) ;
ylabel ( ’ Im ( s ) ’) ;
subplot (3 ,2 ,4) ;
ezplot ( Lap_F4 , [0 , 10]) ;
title ( ’ Laplace Transform of t * u ( t ) ’) ;
xlabel ( ’ Re ( s ) ’) ;
ylabel ( ’ Im ( s ) ’) ;
subplot (3 ,2 ,5) ;
ezplot ( Lap_F5 , [0 , 10]) ;
title ( ’ Laplace Transform of (1/2) * t ^2* u ( t ) ’) ;
xlabel ( ’ Re ( s ) ’) ;
ylabel ( ’ Im ( s ) ’) ;
subplot (3 ,2 ,6) ;
ezplot ( Lap_F6 , [0 , 10]) ;
title ( ’ Laplace Transform of cos (3 t ) ’) ;
xlabel ( ’ Re ( s ) ’) ;
ylabel ( ’ Im ( s ) ’) ;