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 /569/CH3/EX3.25/3_25.sci | |
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 '569/CH3/EX3.25/3_25.sci')
-rwxr-xr-x | 569/CH3/EX3.25/3_25.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/569/CH3/EX3.25/3_25.sci b/569/CH3/EX3.25/3_25.sci new file mode 100755 index 000000000..886cab058 --- /dev/null +++ b/569/CH3/EX3.25/3_25.sci @@ -0,0 +1,11 @@ +//to find no of 100 rsding exceed 30mm
+
+clc;
+x=30-26.3; //mean value 26.3
+r=2.5;
+o=r/.6745;
+t=x/o;
+A=.3413;//area under gaussian curve corresponding to t
+n=2*A*100;
+nn=100-floor(n);
+disp(nn/2,'no of readings exceed');
\ No newline at end of file |