Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. begin{tikzpicture}[
  2. block/.style={draw, minimum width=10mm, minimum height=6mm},
  3. sum/.style={circle, draw, minimum size=6mm, inner sep=0pt,
  4. node contents={huge$+$}},
  5. mult/.style={circle, draw, minimum size=6mm, inner sep=0pt,
  6. node contents={huge$times$}},
  7. >=Stealth,
  8. node distance=12mm and 10mm]
  9. node (b1) [block] {$E$};
  10. node (b2) [block,below=of b1] {$E$};
  11. node (b3) [block,below=of b2] {$E$};
  12. node (b4) [block,below=of b3] {$E$};
  13. coordinate[left=of $(b1.west)!1.5!(b2.west)$] (in);
  14. coordinate[left=of $(b1.east)!1.5!(b2.east)$] (out);
  15. node (m) [mult, right=of b2];
  16. node (m1) [mult, left=of b2];
  17. node (s) [sum,right=of out -| m.west];
  18. node (b5) [block,right=of s] {$h_5[n]$};
  19. %
  20. draw[<-] (in) -- node[above] {$x[n]$} + (-12mm,0);
  21. draw[<->] (m1.west)-| (in) |- (b3.west);
  22. draw[<->] (b1.west) -| (in) |- (b4.west);
  23. draw[->] (b1) -| (s);
  24. draw[->] (b2) -- (m);
  25. draw[->] (m1) -- (b2);
  26. draw[->] (m) -| (s);
  27. draw[->] (s) -- (b5);
  28. draw[->] (b5.east) -- node[above] {$y[n]$} + (12mm,0);
  29. end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement