matlab如何画圆

matlab如何画圆,第1张

使用MATLAB画圆的方法有两种,分别如下:

1、启动MATLAB,新建脚本,输入以下代码

close all; clear all; clc

r=2; theta=0:pi/100:2pi;

x=rcos(theta); y=rsin(theta);

rho=rsin(theta);

figure(1)

plot(x,y,'-')

hold on; axis equal

fill(x,y,'c')

figure(2)

h=polar(theta,rho);

set(h,'LineWidth',2)

2、保存和运行上述脚本,在figure(1)中得到plot(x,y)和fill(x,y)绘制的圆。

3、使用plot(x,y)画圆只需要接着输入以下代码:

figure(3)

subplot(1,2,1);plot(x,y,'-');hold on; axis square

fill(x,y,'c')

subplot(1,2,2);h=polar(theta,rho);set(h,'LineWidth',2)

4、点击保存并运行。

欢迎分享,转载请注明来源:浪漫分享网

原文地址:https://hunlipic.com/langman/3599966.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-08-16
下一篇2023-08-16

发表评论

登录后才能评论

评论列表(0条)

    保存