diff options
Diffstat (limited to '409/CH1/EX1.9')
-rwxr-xr-x | 409/CH1/EX1.9/Example1_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/409/CH1/EX1.9/Example1_9.sce b/409/CH1/EX1.9/Example1_9.sce new file mode 100755 index 000000000..6065b257b --- /dev/null +++ b/409/CH1/EX1.9/Example1_9.sce @@ -0,0 +1,12 @@ +clear;
+clc;
+
+// Example 1.9
+printf('Example 1.9\n\n');
+//Page no. 29
+// Solution
+
+um = 3 ;//[kb]
+kb = 1000 ;//[bp]
+bs_prs = (3*um*kb)/(1*1);
+printf('The number of base pairs are %i bp. \n',bs_prs);
\ No newline at end of file |