summaryrefslogtreecommitdiff
path: root/3513/CH2/EX2.5/Ex2_5.sce
blob: bc310e63c597003c698644d097e302f974f3838e (plain)
1
2
3
4
5
6
7
8
9
// To determine percentage of specimens
//page no 23
clear
clc;
m=10;//years mean
sd=2;// years standard deviation
z=1.64;//The values of Z from normal tables
x=(z*sd)-m;
mprintf("Therefore the value of x =%.3f.years",abs(x));