Mathematica 绘图错误

Mathematica Plot error

我想在同一个系统中绘制 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"

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

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