summaryrefslogtreecommitdiff
path: root/728/CH3/EX3.1/Ex3_1.txt
diff options
context:
space:
mode:
Diffstat (limited to '728/CH3/EX3.1/Ex3_1.txt')
-rwxr-xr-x728/CH3/EX3.1/Ex3_1.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/728/CH3/EX3.1/Ex3_1.txt b/728/CH3/EX3.1/Ex3_1.txt
new file mode 100755
index 000000000..f2235deb1
--- /dev/null
+++ b/728/CH3/EX3.1/Ex3_1.txt
@@ -0,0 +1,11 @@
+//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);
+