From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1475/CH8/EX8.1/Example_8_1.sce | 9 +++++++++ 1475/CH8/EX8.1/Output_8_1.PNG | Bin 0 -> 7251 bytes 2 files changed, 9 insertions(+) create mode 100755 1475/CH8/EX8.1/Example_8_1.sce create mode 100755 1475/CH8/EX8.1/Output_8_1.PNG (limited to '1475/CH8/EX8.1') 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"); diff --git a/1475/CH8/EX8.1/Output_8_1.PNG b/1475/CH8/EX8.1/Output_8_1.PNG new file mode 100755 index 000000000..fe6aabbb2 Binary files /dev/null and b/1475/CH8/EX8.1/Output_8_1.PNG differ -- cgit