diff options
Diffstat (limited to '25/CH5/EX5.6')
-rwxr-xr-x | 25/CH5/EX5.6/5_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/25/CH5/EX5.6/5_6.sce b/25/CH5/EX5.6/5_6.sce new file mode 100755 index 000000000..8aade71aa --- /dev/null +++ b/25/CH5/EX5.6/5_6.sce @@ -0,0 +1,11 @@ +// example:-5.6,page no.-232.
+//program to find the ABCD parameter of a two-port network.
+syms A B C D V1 V2 I1 I2 Z;
+//A=V1/V2; // for i2=0;
+A=1;
+B=V1/(V1/Z);
+C=0;
+D=I1/I1;
+ABCD=[A B;C D];
+// result
+disp(ABCD,'abcd parameter')
\ No newline at end of file |