summaryrefslogtreecommitdiff
path: root/1475/CH8/EX8.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1475/CH8/EX8.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1475/CH8/EX8.7')
-rwxr-xr-x1475/CH8/EX8.7/Example_8_7.sce13
-rwxr-xr-x1475/CH8/EX8.7/Output_8_7.PNGbin0 -> 9347 bytes
2 files changed, 13 insertions, 0 deletions
diff --git a/1475/CH8/EX8.7/Example_8_7.sce b/1475/CH8/EX8.7/Example_8_7.sce
new file mode 100755
index 000000000..3ba07f538
--- /dev/null
+++ b/1475/CH8/EX8.7/Example_8_7.sce
@@ -0,0 +1,13 @@
+//Example 8.7 Calculate General fertility Rate
+clc;
+clear;
+No_of_female=4300;
+No_of_Women=[25000 24000 20000 16000 15000 12000 8000];
+No_of_Live_Births=[1140 3000 2740 1360 600 150 10];
+Total_No_of_Women=sum(No_of_Women);
+Total_No_of_Live_Births=sum(No_of_Live_Births);
+G_F_R=Total_No_of_Live_Births/Total_No_of_Women;
+S_F_R=No_of_Live_Births./No_of_Women;
+T_F_R=sum(S_F_R)*5;
+G_R_R=(No_of_female/Total_No_of_Live_Births)*T_F_R;
+disp(G_R_R,"Gross Reproduction Rate =",T_F_R,"Total Fertility Rate =",S_F_R,"Specific Fertility Rate =",G_F_R,"General Fertility Rate =",Total_No_of_Live_Births,"Total_No_of_Live_Births",Total_No_of_Women,"Total_No_of_Women");
diff --git a/1475/CH8/EX8.7/Output_8_7.PNG b/1475/CH8/EX8.7/Output_8_7.PNG
new file mode 100755
index 000000000..ef1ee6f76
--- /dev/null
+++ b/1475/CH8/EX8.7/Output_8_7.PNG
Binary files differ