diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3673/CH10/EX10.a.16 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3673/CH10/EX10.a.16')
-rw-r--r-- | 3673/CH10/EX10.a.16/Example_a_10_16.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3673/CH10/EX10.a.16/Example_a_10_16.sce b/3673/CH10/EX10.a.16/Example_a_10_16.sce new file mode 100644 index 000000000..a45074bb5 --- /dev/null +++ b/3673/CH10/EX10.a.16/Example_a_10_16.sce @@ -0,0 +1,8 @@ +//Example_a_10_16 page no:477
+clc;
+t=2;
+V1=(0.5*((t*(-2)*exp(-2*t))+exp(-2*t)))+(0.2*(((t^2)*(-1)*exp(-t))+(2*(t)*exp(-t))));
+disp(V1,"the value of V1(t) is (in V)");//the value of V1 is wrong in text book, correct calculation is done here
+V2=-0.125*((2*2*exp(-2))-(2^2*exp(-2)))+(0.2*(exp(-2*2)-(2*2*exp(-2*2))));
+disp(V2,"the value of V2(t) is (in V)");
+//calculation of V1 is wrong in textbook
|