blob: 757eee9487589084cf7dc9c0eec41b4e30f77372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//example 3.14//
clc
//clears the screen//
clear
//clears all existing variables//
moh=10^-3;
//maximum output HIGH state current//
mol=20*10^-3;
//maximum output LOW state current//
mih=50*10^-6;
//maximum input HIGH state current//
mil=2*10^-3;
//maximum input LOW state current//
h=mol/mil;
disp(h,'the LOW state fan out =')
|