summaryrefslogtreecommitdiff
path: root/67/CH6/EX6.27.a/example627a.sce
blob: 4ab35236509893b612f1c2f52952c18b0d33b45c (plain)
1
2
3
4
5
6
//Example 6.27a
//Laplace transform of x(t)=t^3+3*t^2-6*t+4
clc;
syms t;
x=t^3+3*t^2-6*t+4;
X=laplace(x);