zuoye21.m
上传用户:futai2001
上传日期:2020-09-18
资源大小:1k
文件大小:1k
源码类别:

生物技术

开发平台:

Matlab

  1. clear,close all 
  2. R=13; 
  3. r=7; 
  4. P=r+(R-r)*rand(1,250); 
  5. t1=-pi*rand(1,250); 
  6. px1=10+P.*cos(t1);% 250个均匀分布点的x坐标 
  7. py1=P.*sin(t1);% 250个均匀分布点的y坐标 
  8. ta1=0:-0.01:-pi; 
  9. plot(10+r*cos(ta1),r*sin(ta1),'-k',10+R*cos(ta1),R*sin(ta1),'-k') 
  10. axis equal,hold on 
  11. plot(px1,py1,'.') 
  12. hold on 
  13. d=4;
  14. t1=pi*rand(1,250); 
  15. px2=P.*cos(t1);% 250个均匀分布点的x坐标 
  16. py2=d+P.*sin(t1);% 250个均匀分布点的y坐标 
  17. ta1=0:0.01:pi; 
  18. plot(r*cos(ta1),d+r*sin(ta1),'-k',R*cos(ta1),d+R*sin(ta1),'-k') 
  19. axis equal,hold on 
  20. plot(px2,py2,'.')