matlab 画这个函数的图像

来源:百度知道 编辑:UC知道 时间:2024/06/22 12:34:06
y=18469x/7+8413469/7+243455/(7x)
速度。。。急求。。。

>>x=linspace(-10,10);

>>y=18469*x./7+8413469./7+243455./(7*x+eps);

>>plot(x,y,'r')

图形:

syms x
y=18469*x/7+8413469/7+243455/(7*x);
ezplot(y,[-5 5])