大家好,又见面了,我是你们的朋友全栈君。
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
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/150841.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...