summaryrefslogtreecommitdiff
path: root/1658/CH5/EX5.15/Ex5_15.sce
blob: 4af94de0f78a39c9670b1190cd2a2dfb3fed20ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc;
V1=0;
V2=0;
VO=0;
disp('V',VO*1,"VO=");
V1=0;
V2=5;
VO=V2-0.7;
disp('V',VO*1,"VO=");
V1=5;
V2=0;
VO=V1-0.7;
disp('V',VO*1,"VO=");
V1=5;
V2=5;
VO=V2-0.7;
disp('V',VO*1,"VO=");