Advertisement
Guest User

Untitled

a guest
Sep 9th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. fixit = Show[
  2. MapAt[# /.
  3. Line[d_] :> Line[Join @@ Most@SplitBy[d, Last@# == 0 &]] &, #,1], PlotRange -> Automatic] &;
  4. p = Plot[
  5. {f[p]},
  6. {p, 0, 1},
  7. AxesLabel -> {"p, АТС/метр", ""}, PlotStyle -> {Red, Thick}
  8. ];
  9. Show[
  10. ListPlot[Qp, PlotRange -> All,
  11. AxesLabel -> {"p, cars/m", "Q, cars/s"}],
  12. p // fixit,
  13. ImageSize -> plotWidth
  14. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement