xmitlnlength.m
上传用户:asli888
上传日期:2013-05-03
资源大小:7045k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function[y]= xmitlnlength(freq)
  2. % xmitlnlength
  3. %
  4. % transmission line length formula for coaxial cable to an antenna
  5. % (the velocity factor for coax is approximately 0.66)
  6. % frequency is in Mhz,length is in feet
  7. %
  8. % programmed by Earl R. Wilson
  9. %
  10. wvlength=300/freq;
  11. v=0.66;
  12. y=984*wvlength*v/freq;