关于PLOT的问题
syms x;y=x-7;
x=1:50;
plot(x,y)
报错怎么解决?
??? Error using ==> plot
Conversion to double from sym is not possible.
Error in ==> Untitled at 5
plot(x,y)
回复 楼主 xh0301 的帖子
zplot(y,) ??? Undefined command/function 'zplot'.zplot是画复平面的吗 不行啊 还是有错误
回复 板凳 xh0301 的帖子
报歉没复制好, 应该为ezplot syms x;y=x-7;
x=1:50;
y=subs(y);
plot(y)
借鉴了论坛其他帖子 这样改好像也行
不过还是要感谢你了
回复 5楼 xh0301 的帖子
个人较不喜欢这样混用, 很容易不小心出错而不自知, 下面方式参考下!syms x; y=x-7;
y2=subs(y,); plot(y2)
页:
[1]