blob: 6669f4a3c5e74d6e81bd66d9388fe8a0cb6ce086 (
plain)
1
2
3
4
5
6
7
8
9
|
//Caption:Calculate the phase shift of the component
//Exa:6.13
clc;
clear;
close;
w_l=7.2;//wavelength (in cm)
x=10.5-9.3;
Phase_shift=(2*%pi*x)/(w_l);
disp(Phase_shift*180/%pi,'Phase Shift (in degree) =');
|