diff options
Diffstat (limited to '569/CH3/EX3.24/3_24.sci')
-rwxr-xr-x | 569/CH3/EX3.24/3_24.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/569/CH3/EX3.24/3_24.sci b/569/CH3/EX3.24/3_24.sci new file mode 100755 index 000000000..f67f370a4 --- /dev/null +++ b/569/CH3/EX3.24/3_24.sci @@ -0,0 +1,9 @@ +//to find probable no of resistors
+
+clc;
+x=.15; //deviation
+o=.1; //standard deviation
+t=x/o;
+A=.4432 //area under gaussian curve corresponding to t
+n=2*A*1000;
+disp(floor(n),'no of resistors');
\ No newline at end of file |