summaryrefslogtreecommitdiff
path: root/1592/CH2/EX2.9/example_2_9.sce
blob: 02c6dfa6bc15516d3058ecb6770facdcb64567c0 (plain)
1
2
3
4
5
6
7
8
9
10
//Scilab Code for Example 2.2 of Signals and systems by
//P.Ramakrishna Rao
clear;
clc;
syms s X;
//After solving for I(s)
//I(s)=2/(s+1)
X=2/(s+1)
x=ilaplace(X);
disp(x,"i(t)=")