diff options
Diffstat (limited to '728/CH3/EX3.1/EX3_1.sce')
-rwxr-xr-x | 728/CH3/EX3.1/EX3_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/728/CH3/EX3.1/EX3_1.sce b/728/CH3/EX3.1/EX3_1.sce new file mode 100755 index 000000000..362dd1ce9 --- /dev/null +++ b/728/CH3/EX3.1/EX3_1.sce @@ -0,0 +1,10 @@ +//Caption:Program to find value of terminating impedance of lossless transmission line.
+//Exa:3.1
+clc;
+clear;
+close;
+//Given:
+Z_ch=100;//in ohms
+S=5;//VSWR (unitless)
+Z=Z_ch*S;
+printf("\n\n\t The terminating impedence = %d ohms ",Z);
\ No newline at end of file |