blob: 6997f5202c753d2f9e21ec8c3db5fbac8a22395e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//example 11.2(a)//
//maximum rate at which data can be stored//
clc
//clears the screen//
clear
//clears already existing variables//
disp('the maximum rate at which data can be stored is:')
t=200*(10^-9);
//write cycle time//
r=1/t;
//maximum rate//
disp(r)
disp('words/sec')
|