snakedisp.m
上传用户:zlding2008
上传日期:2013-05-13
资源大小:1914k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Matlab

  1. function snakedisp(x,y,style)
  2. % SNAKEDISP  Initialize the snake 
  3. %      snakedisp(x,y,line)
  4. %       
  5. %      style is same as the string for plot
  6. %      Chenyang Xu and Jerry L. Prince, 5/15/95, 6/17/97
  7. %      Copyright (c) 1995-97 by Chenyang Xu and Jerry L. Prince
  8. %      Image Analysis and Communications Lab, Johns Hopkins University
  9. hold on
  10. % convert to column data
  11. x = x(:); y = y(:);
  12. if nargin == 3
  13.    plot([x;x(1,1)],[y;y(1,1)],style);
  14.    hold off
  15. else
  16.    disp('snakedisp.m: The input parameter is not correct!'); 
  17. end