blob: 279a920d20fd993b40c2023a958f750883f70c7f (
plain)
1
2
3
4
5
6
7
8
9
10
|
//exmaple 10.10(b)//
clc
//clears the screen//
clear
//clears all existing variables//
ctp=1/(10*10^6);
//clock time period in seconds//
ct=8*ctp*10^6;
//conversion time//
disp(ct, 'conversion time in micro seconds = ')
|