Guest User

Untitled

a guest
Dec 11th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. % contents of matrix.txt
  2. x y v
  3. 0 0 78
  4. 1 0 63
  5. 2 0 42
  6. 3 0 51
  7. 4 0 99
  8. ...
  9.  
  10. % MWE
  11. documentclass{standalone}
  12. usepackage[utf8]{inputenc}
  13. usepackage{ifthen}
  14. usepackage{tikz}
  15. usepackage{pgfplots}
  16.  
  17. usetikzlibrary{positioning}
  18.  
  19. begin{document}
  20. begin{tikzpicture}
  21. begin{axis}[enlargelimits=false, axis lines=none, colormap/blackwhite]
  22. addplot [
  23. matrix plot,
  24. visualization depends on={value ifthenelse{thisrow{v} < 90}{white}{black} as tcolor},
  25. nodes near coords,
  26. scatter/@pre marker code/.append style={/tikz/text=tcolor},
  27. mesh/cols=8,
  28. point meta=explicit,
  29. ] table [x=x, y=y, meta=v] {matrix.txt};
  30. end{axis}
  31. end{tikzpicture}
  32. end{document}
Add Comment
Please, Sign In to add comment