Guest User

Untitled

a guest
Nov 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. documentclass[margin=5mm]{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{matrix,calc}
  4.  
  5. begin{document}
  6.  
  7.  
  8. begin{tikzpicture}[every node/.style={anchor=north east,fill=white,minimum width=1.4cm,minimum height=7mm}]
  9. matrix (mA) [draw,matrix of math nodes]
  10. {
  11. i(W,X_1,Y_3) & cdots & i(W,X_k,Y_3) \
  12. i(W_2, X_1,Y_3) & cdots & i(W_2,X_k,Y_3) \
  13. vdots & ddots & vdots \
  14. i(W_j,X_1,Y_3) & cdots & i(W_j,X_k,Y_3) \
  15. };
  16. matrix (mB) [draw,matrix of math nodes] at ($(mA.south west)+(4.9,1.65)$)
  17. {
  18. i(W,X_1,Y_2) & cdots & i(W,X_k,Y_2) \
  19. i(W_2, X_1,Y_2) & cdots & i(W_2,X_k,Y_2) \
  20. vdots & ddots & vdots \
  21. i(W_j,X_1,Y_2) & cdots & i(W_j,X_k,Y_2) \
  22. };
  23. matrix (mC) [draw,matrix of math nodes] at ($(mB.south west)+(4.9,1.65)$)
  24. {
  25. i(W,X_1,Y_1) & cdots & i(W,X_k,Y_1) \
  26. i(W_2, X_1,Y_1) & cdots & i(W_2,X_k,Y_1) \
  27. vdots & ddots & vdots \
  28. i(W_j,X_1,Y_1) & cdots & i(W_j,X_k,Y_1) \
  29. };
  30. draw[dashed](mA.north east)--(mC.north east);
  31. draw[dashed](mA.north west)--(mC.north west);
  32. draw[dashed](mA.south east)--(mC.south east);
  33. end{tikzpicture}%
  34.  
  35.  
  36. end{document}
Add Comment
Please, Sign In to add comment