为什么PlotLegend在Mathematica 6.0中是未知选项?

时间:2012-06-04 21:06:44

标签: wolfram-mathematica

我想在地块的右上角有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]"}]

1 个答案:

答案 0 :(得分:5)

PlotLegend始终(至少从2.2开始)通过附加软件包加载。

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