xh0301 发表于 2009-4-30 23:23

关于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)

ChaChing 发表于 2009-5-1 08:39

回复 楼主 xh0301 的帖子

zplot(y,)

xh0301 发表于 2009-5-3 16:52

??? Undefined command/function 'zplot'.


zplot是画复平面的吗 不行啊 还是有错误

ChaChing 发表于 2009-5-3 16:55

回复 板凳 xh0301 的帖子

报歉没复制好, 应该为ezplot

xh0301 发表于 2009-5-3 17:06

syms x;
y=x-7;
x=1:50;
y=subs(y);
plot(y)
借鉴了论坛其他帖子 这样改好像也行

不过还是要感谢你了

ChaChing 发表于 2009-5-4 10:33

回复 5楼 xh0301 的帖子

个人较不喜欢这样混用, 很容易不小心出错而不自知, 下面方式参考下!
syms x; y=x-7;
y2=subs(y,); plot(y2)
页: [1]
查看完整版本: 关于PLOT的问题