blob: ed5f76ed1e35856f7618d0d153340d2490c8999d (
plain)
1
2
3
4
5
6
7
8
9
10
|
//example 4.5//
clc
//clears the screen//
clear
//clears all existing variables//
a=40;
//when output is HIGH, inputs of all gates draw current individually//
i=7*a;
//input loading factor//
disp(i,'current being sourced when output is high (in microA) = ')
|