Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. RequirePackage{luatex85}
  2. documentclass[tikz]{standalone}
  3.  
  4. usepackage{pgfplots}
  5. pgfplotsset{compat=newest}
  6.  
  7. begin{document}
  8. begin{tikzpicture}
  9. begin{axis}
  10. addplot3[contour filled] table {P.dat};
  11. end{axis}
  12. end{tikzpicture}
  13. end{document}
  14.  
  15. RequirePackage{luatex85}
  16. documentclass{standalone}
  17.  
  18. usepackage{pgfplots}
  19. usepgfplotslibrary{patchplots}
  20. pgfplotsset{compat=newest}
  21.  
  22. begin{document}
  23. begin{tikzpicture}
  24. begin{axis}[view={0}{90}]
  25. addplot3[contour filled,mesh/rows=31,mesh/cols=11,mesh/check=false] table {P2.dat};
  26. end{axis}
  27. end{tikzpicture}
  28. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement