用matlab 画图。用两种方法表示并画出y=x平方分之一。求解答啊~~

急急急!哪位高手帮忙下啊。
2025-01-05 13:42:16
推荐回答(1个)
回答1:

% 方法1
ezplot('1/x^2',[-10 10])

% 方法2
x=-10:.5:10;
y=1./x.^2;
plot(x,y)

% 方法3
syms x
y=1/x^2
ezplot(y,[-10 10])