blob: d1f4fb1665d8ed4b3bb1db105a8c70451ca1f31c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//example 4.4(c)//
//The output loading factor (HIGH state) in TTL//
clc
//clears the variables//
clear
//clears the screen//
a=20
//I(ih) in micro A//
b=.1
//I(il) in mA//
c=.4
//I(oh) in mA//
d=4
//I(OL) in mA//
e=1.6
//UL (low state) in mA//
f=40
//UL (high state) in micro Amp//
s=c*1000/f;
disp(s,'The output loading factor (HIGH state) = ')
|