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

matlab例程

开发平台:

Matlab

  1. function [Pr]=highpoint(z)
  2. %------------------------------------------------------------------------
  3. % Highpoint is a m file that calculates the highest points in a ground
  4. % profile for microwave communications 
  5. %
  6. %                      [Pr]=highpoint(z)
  7. %
  8. % Developed by: Hanna Aboukheir, Hanna2k2@hotmail.com
  9. %----------------------------------------------------------------------
  10. n=length(z)-1
  11. % Specifies the matrix to explore
  12. for i=0:n
  13.    H(i+1)=z(i+1)
  14.    Pr(i+1)=max(H)
  15. end
  16. % Plotting Results
  17. figure(1)
  18. plot(z)
  19. title('Graphical Plot of Profile')
  20. figure(2)
  21. plot(Pr)
  22. title('Highest Points on Profile')