blob: 886cab058c8e4f622b6c6fdfc9fc005ac35b9b08 (
plain)
1
2
3
4
5
6
7
8
9
10
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');
|