summaryrefslogtreecommitdiff
path: root/462/CH3/EX3.7.a/ex_3_7_a.sce
blob: dee7428c3af0c457afcd855a45f7ba875a858034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//example 3.7(a)//
clc
//clears the screen//
clear
//clears existing variables//
disp('when V(i)=0, the transistor T(1) is operating at point B')
t=5;
//input voltage as given in question//
x=0;
V=t-x;
//output voltage in volts//
disp('here V(o)(in volts)=')
disp(V)