blob: c127c0a6b2f96159be8861cc4db5f5a23b4d7604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//example 4.4(b)//
//The input loading factor (LOW 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=b/e;
disp(s,'The input loading factor (LOW state) = ')
|