summaryrefslogtreecommitdiff
path: root/67/CH6/EX6.26/example626.sce
blob: 779034aafc97529fbedfbbaaea067d91bb761988 (plain)
1
2
3
4
5
6
//Example 6.26
//Find laplace transform x(t)=2e^(-3t)u(t)-e^(-2t)u(t)
clc;
syms t;
x=2*%e^(-3*t)-%e^(-2*t);
X=laplace(x);