五种MATLAB画圆方式程序

clear,clc
% 方法一:使用隐函数的方法来绘制.
hold on
ezplot('x^2+y^2-8')
% 方法二:转换成参数函数来绘制图形.
syms x y t 
x=2*sin(t);
y=2*cos(t);
% 程序如下:
t=0:pi/100:2*pi;
x=2*sin(t);
y=2*cos(t);
plot(x,y,'r')
% 方法三:转换成匿名函数来绘制图形.
t1=0:pi/100:2*pi;
x1=@(tt)2*sin(tt)+1;
y1=@(tt)2*cos(tt)+2;
fplot(x1,y1,'g')
hold off
%{
r=2; theta=0:pi/100:2*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)

%法5利用rectangle函数
%rectangle函数使用说明https://jingyan.baidu.com/article/ca00d56c5abf86e99eebcf34.html
figure(3);
r = 10;%半径
a = 10;%横坐标
b = 10;%纵坐标
para = [a-r/2, b-r/2, r, r];
rectangle('Position', para, 'Curvature', [1 1]);
axis equal

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值