centrefig.m
上传用户:xfjled
上传日期:2007-05-06
资源大小:150k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function centrefig
  2. s = get(0,'ScreenSize');
  3. f = get(gcf,'position');
  4. f(1) = (s(3)-f(3))/2;
  5. f(2) = (s(4)-(f(4)+20))/2;
  6. set(gcf,'Position',f)