0

我想PlotLegend在情节的右上角有一个,但这个选项不起作用。

我怎样才能添加PlotLegend到我的Plot?我应该购买 Mathematica 8 吗?

u=Sech[x];
w=Cos[x];
v=Sin[x]^2;

Plot[{u,w,v},{x,-5,5},PlotStyle->{Automatic,Dashed,DotDashed},
    PlotLegend->{"Sech[x]","Cos[x]","Sin[x]"}]
4

1 回答 1

6

PlotLegend一直(至少从 2.2 开始)是通过附加包加载的。

如果需要,请升级,但使用加载图例Needs["PlotLegends`"]应该可以解决问题。

于 2012-06-04T23:27:55.570 回答