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

2024-11-18 09:32:38
推荐回答(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);