summaryrefslogtreecommitdiff
path: root/67/CH6/EX6.27.b/example627b.sce
blob: 580c868503b7f48ac8fde4cdf8252bcdecc493d0 (plain)
1
2
3
4
5
6
//Example 6.27b
//x(t)=(cos(3t))^3
clc;
syms t;
x=(cos(3*t))^3;
X=laplace(x);