summaryrefslogtreecommitdiff
path: root/1592/CH2/EX2.8/example_2_8.sce
blob: cebf40a4d206e8238fee6a41f12a7cb8e1f85368 (plain)
1
2
3
4
5
6
7
8
9
10
//Scilab Code for Example 2.8 of Signals and systems by
//P.Ramakrishna Rao
//Unilateral Laplace Transform
clear;
clc;
syms t s
s=%s;
a=ilaplace(1/(s^3+s^2))
b=a-3;
disp(a*'u(t)'+b*'u(t-3)',"x(t)=")