Guest User

Untitled

a guest
Nov 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. tikzset{
  2. desicion/.style={
  3. diamond,
  4. draw,
  5. text width=5em,
  6. text badly centered,
  7. inner sep=0pt
  8. },
  9. block/.style={
  10. rectangle,
  11. draw,
  12. text width=10em,
  13. text centered,
  14. rounded corners
  15. },
  16. cloud/.style={
  17. draw,
  18. ellipse,
  19. minimum height=2em
  20. },
  21. descr/.style={
  22. fill=white,
  23. inner sep=2.5pt
  24. },
  25. connector/.style={
  26. -latex,
  27. font=scriptsize
  28. },
  29. rectangle connector/.style={
  30. connector,
  31. to path={(tikztostart) -- ++(#1,0pt) tikztonodes |- (tikztotarget) },
  32. pos=0.5
  33. },
  34. rectangle connector/.default=-2cm,
  35. straight connector/.style={
  36. connector,
  37. to path=--(tikztotarget) tikztonodes
  38. }
  39. }
  40.  
  41.  
  42.  
  43. begin{tikzpicture}
  44. matrix (m)[matrix of nodes, column sep=2cm,row sep=8mm, align=center, nodes={rectangle,draw, anchor=center} ]
  45. {
  46. |[block]| {Start} & \
  47. |[desicion]| {$d^{(i)}_{(n,m)} < 2r$?} & \
  48. |[block]| {Estimate $I_{n,p}^{(i)} rightarrow FBS_m$ } & \
  49. |[block]| {Estimate $zeta^{(i*)}$ and $varphi^{(i*)}_{n,p}$} & \
  50. |[desicion]| {$o^{(i+1)}_{(n,m)} > o^{(i)}_{(n,m)}$?} & \
  51. |[block]| {Apply} & \
  52. |[block]| {End} & \
  53. };
  54. path [>=latex,->] (m-1-1) edge (m-2-1);
  55. path [>=latex,->] (m-2-1) edge (m-3-1);
  56. path [>=latex,->] (m-3-1) edge (m-4-1);
  57. path [>=latex,->] (m-4-1) edge (m-5-1);
  58. path [>=latex,->] (m-5-1) edge (m-6-1);
  59. path [>=latex,->] (m-6-1) edge (m-7-1);
  60. path [>=latex,->] (m-2-2) edge (m-7-2);
  61.  
  62. end{tikzpicture}
Add Comment
Please, Sign In to add comment