怎样用matlab绘制函数y=(u-x)/x 的图像,u已知
问题描述:
怎样用matlab绘制函数y=(u-x)/x 的图像,u已知
答
syms x;
u=?;
y=(u-x)/x;
ezplot(y);
grid on