這裏的Cos &仙線彩色同爲餡,和他們躺在下面的另一條線,如果這就是你的‘邊緣’的意思。
Show[Plot[{Cos[x], Sin[x]}, {x, 0, 2 Pi}, Filling -> {1 -> {2}},
FillingStyle -> Directive[LightGray], PlotStyle -> LightGray],
Plot[Sech[x], {x, 0, 2 Pi}]]
附錄
感謝接受。這裏有一個更全面的答案,以下您的編輯:
Show[Plot[{Sech[x],
If[Sech[x] > 0.8, 0.8],
If[Sech[x] > 0.5, 0.5],
If[Sech[x] > 0.3, 0.3],
If[0.5 > Sech[x] > 0.3, Sech[x]]},
{x, 0, 2 Pi}, Filling -> {1 -> {2}, 3 -> {4}, 4 -> {5}},
FillingStyle -> LightGray, PlotStyle -> LightGray],
Plot[Sech[x], {x, 0, 2 Pi}, PlotStyle -> Gray],
Plot[If[0.3 > Sech[x], Sech[x]], {x, 0, 2 Pi},
PlotStyle -> Directive[{Thick, Black}]],
Plot[If[0.8 > Sech[x] > 0.5, Sech[x]], {x, 0, 2 Pi},
PlotStyle -> Directive[{Thick, Black}]],
Map[Graphics[Style[Line[{
{ArcSech[#], 0}, {ArcSech[#], #}}],
Thick, Dashed, Antialiasing -> False]] &,
{0.8, 0.5, 0.3}]]
,謝謝,我已經調整的問題。第一部分正是我問 – user1426522
OK,理解。這是內「秀」定義的順序說謊下面有什麼 – user1426522