matlab画x^2+y^2=1的图像怎么画?

2024年11月18日 09:32
有2个网友回答
网友(1):

t = 0: 0.1: 10;
x = sin(t);
y = cos(t);
plot(x,y,'.-r');grid on;
axis([-1.2 1.2 -1.2 1.2]);

网友(2):

syms
x
y;
ezplot(x.^2+y.^2-4*x);