Chp6fig6.m
资源名称:power.rar [点击查看]
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:
其他行业
开发平台:
Matlab
- theta=0:.02:2*pi;
- r = 2*ones(1, length(theta));
- x=-3:.02:1.5;
- y=1- exp(x);
- plot(x,y,'-'),grid
- axis([-3 3 -3 3]);
- axis('square');
- xlabel('x')
- text(1,1.8,' x^2+y^2=4')
- text(1.2,-2.3,' e^x+y=1')
- hold;
- polar(theta, r)
- hold off