Guest User

Simplified Code without unnecessary %

a guest
Jun 14th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.50 KB | None | 0 0
  1. \documentclass
  2. [
  3.  pstricks,
  4.  border=12pt,
  5. ]{standalone}
  6.  
  7. \usepackage{pst-3dplot}
  8.  
  9. \begin{document}
  10.  
  11. \begin{pspicture}(-3,-3)(3,4)
  12. \pstThreeDCoor
  13. [
  14.  xMin=-4,
  15.  xMax=4,
  16.  yMin=-4,
  17.  yMax=4,
  18.  zMax=3,
  19.  arrows=<->,
  20. ]
  21. \psplotThreeD
  22. [
  23.  plotstyle=line,
  24.  linecolor=blue,
  25.  yPlotpoints=40,
  26.  xPlotpoints=30,
  27.  linewidth=0.5pt,
  28.  hiddenLine=true,
  29. ](-2,2)(-2,2)
  30. {
  31.  x 100 mul cos y 100 mul sin sub
  32. }
  33. \rput[tl](-2,3.5){$f(x,y) = \cos(100x) - \sin(100y)$}
  34. \end{pspicture}
  35.  
  36. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment