matlab画图(MATLAB两种方式绘制圆)
应用介绍
1、启动MATLAB,新建脚本(Ctrl+N),输入以下代码:
close all; clear all; clc
r=2; theta=02*pi;
x=r*cos(theta); y=r*sin(theta);
rho=r*sin(theta);
figure(1)
plot(x,y,'-')
hold on; axis equal
fill(x,y,'c')
figure(2)
h=polar(theta,rho);
set(h,'LineWidth',2)
3、保存和运行上述脚本,在figure(2)中得到polar(theta,rho)绘制的圆。
5、保存和运行上述增加后的脚本,在figure(3)中将plot(x,y),polar(x,y)绘制的圆画在了一张图上。