diff options
Diffstat (limited to '1658/CH5/EX5.15')
-rwxr-xr-x | 1658/CH5/EX5.15/Ex5_15.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1658/CH5/EX5.15/Ex5_15.sce b/1658/CH5/EX5.15/Ex5_15.sce new file mode 100755 index 000000000..4af94de0f --- /dev/null +++ b/1658/CH5/EX5.15/Ex5_15.sce @@ -0,0 +1,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=");
|