Mathematica Plot错误

时间:2015-04-12 14:51:43

标签: wolfram-mathematica

我想在同一系统中绘制Sin和Cos函数。

但是这段代码

  Plot[{Sin[x], Cos[t]}, {x, 0, 5}, {t, 0, 6}]

导致此错误:Plot::nonopt: "Options expected (instead of {t,0,5}) beyond position 2 in Plot[{Sin[x],Cos[t]},{x,0,5},{t,0,5}]. An option must be a rule or a list of rules"

2 个答案:

答案 0 :(得分:1)

根据文档,您必须为所有函数使用相同的变量x。

答案 1 :(得分:0)

Show[Plot[Sin[x],{x,0,5}], Plot[Cos[t],{t,0,6}]]