diff options
Diffstat (limited to '1475/CH8/EX8.1/Example_8_1.sce')
-rwxr-xr-x | 1475/CH8/EX8.1/Example_8_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1475/CH8/EX8.1/Example_8_1.sce b/1475/CH8/EX8.1/Example_8_1.sce new file mode 100755 index 000000000..ed5b131a4 --- /dev/null +++ b/1475/CH8/EX8.1/Example_8_1.sce @@ -0,0 +1,9 @@ +// Example 8.1 From the following data
+clc;
+clear;
+P1=[1500 3000 5000 500];
+D1=[45 15 30 12];
+P2=[6000 5000 6000 3000];
+D2=[150 20 30 54];
+disp(sum(D2)*1000/sum(P2),"Crude Death Rate for Town II per thousand = ",sum(D1)*1000/sum(P1),"Crude Death Rate for Town I per thousand =");
+disp((D2./P2)*1000,"Specific Death Rate for Town II",(D1./P1)*1000,"Specific Death Rate for Town I");
|