diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /22/CH4/EX4.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '22/CH4/EX4.9')
-rwxr-xr-x | 22/CH4/EX4.9/ch4ex9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/22/CH4/EX4.9/ch4ex9.sce b/22/CH4/EX4.9/ch4ex9.sce new file mode 100755 index 000000000..6f6a695e4 --- /dev/null +++ b/22/CH4/EX4.9/ch4ex9.sce @@ -0,0 +1,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)=")
\ No newline at end of file |