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 /1844/CH2/EX2.7/2Q7.sce | |
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 '1844/CH2/EX2.7/2Q7.sce')
-rw-r--r-- | 1844/CH2/EX2.7/2Q7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1844/CH2/EX2.7/2Q7.sce b/1844/CH2/EX2.7/2Q7.sce new file mode 100644 index 000000000..9e316cd1a --- /dev/null +++ b/1844/CH2/EX2.7/2Q7.sce @@ -0,0 +1,14 @@ +clc
+x=8.28
+y=4.36
+x1=0.005
+y1=0.005
+
+es=(x1/x)+ (y1/y)
+s1= x*y*es
+sn2= x*y + s1
+sn3=x*y - s1
+printf('The maximum error =%f\n',s1)
+printf(' The limits of quantity s are %f sq m',sn2)
+printf(' and %f sq m\n ',sn3)
+
|