blob: 6065b257baf89ef9e3c182aa3bf9f2157f5c773b (
plain)
1
2
3
4
5
6
7
8
9
10
11
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);
|