我想在地块的右上角有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]"}]
答案 0 :(得分:5)
PlotLegend
始终(至少从2.2开始)通过附加软件包加载。
如果需要升级,但使用Needs["PlotLegends`"]
加载图例应该可以解决问题。