SICP Chapter 3.5.3 http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_sec_3.5.3
In section Streams as signals
, SICP gives an audio-visual explanation of Implicit style of definition
-- by feedback loop. But I want to know how to exactly understand the diagram? What's the real advantage and is there any background knowledge?
Take another example, not in Scheme, but in Haskell:
fibs = fix (scanl (+) 0 . (1:))
fibs = fix ((0:) . scanl (+) 1)
We can also draw the signal-flow diagram for either. How can we take advantage of these graphs?
Thanks for advice and information!