MATLAB: How to plot a graph of this equation

1

Y=1/x^2+8

Best Answer

x=-10:0.1:10
Y=1./(x.^2)+8
plot(x,Y)
Related Question