Chp6fig6.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. theta=0:.02:2*pi;
  2. r = 2*ones(1, length(theta));
  3. x=-3:.02:1.5;
  4. y=1- exp(x);
  5. plot(x,y,'-'),grid
  6. axis([-3 3 -3  3]);
  7. axis('square');
  8. xlabel('x')
  9. text(1,1.8,' x^2+y^2=4')
  10. text(1.2,-2.3,' e^x+y=1')
  11. hold;
  12. polar(theta, r)
  13. hold off