Guest User

Untitled

a guest
Jan 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ParametricPlot[{.5, t}, {t, 0, .5}, PlotStyle -> Blue, PlotLabel -> "z"]
  2.  
  3. ParametricPlot[
  4. {.5, t}
  5. , {t, 0, .5}
  6. , PlotStyle -> Blue
  7. , PlotLabel -> "here the plot Label"
  8. , PlotLegends -> {"here your legend"}
  9. , FrameLabel -> {"botoom", "left", "top", "right"}
  10. , PlotTheme -> "Detailed"
  11. ]
  12.  
  13. ParametricPlot[
  14. {.5, t}
  15. , {t, 0, .5}
  16. , PlotStyle -> Blue
  17. , Frame -> True
  18. , PlotLabel -> "here the plot Label"
  19. , PlotLegends -> {"here your legend"}
  20. , FrameLabel -> {"botoom", "left", "top", "right"}
  21. ]
  22.  
  23. Show[{
  24. ParametricPlot[{.5, t}, {t, 0, .5}, PlotStyle -> Blue,
  25. PlotRange -> {Automatic, {0, 0.6}}],
  26. Graphics[Text["z", {1/2, 0.55}]]
  27. }]
Add Comment
Please, Sign In to add comment