blob: 6f6a695e4072ccad728d7310eabac6cdc241de9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Initial and final Value Theorem of Lapalace Transform
syms s;
num =poly([30 20],'s','coeff')
den =poly([0 5 2 1],'s','coeff')
X = num/den
disp (X,"X(s)=")
SX = s*X;
Initial_Value =limit(SX,s,%inf);
final_value =limit(SX,s,0);
disp(Initial_Value,"x(0)=")
disp(final_value,"x(inf)=")
|