<div>With tail recursion, each for loop turns into a function of its own.</div><div> </div><div>stuff_a()</div><div>for (a=0; a != b; ++a) {</div><div>  c += stuff_b(a)</div><div>}</div><div>stuff_c()</div><div> </div><div>
 </div><div>turns into:</div><div> </div><div>stuff_a()</div><div>stuff_b_loop(a, b, 0);</div><div>stuff_c()</div><div> </div><div>stuff_b_loop(A, A, R) -> R;</div><div>stuff_b_loop(A, B, R) -></div><div>  stuff_b_loop(A+1, B, R + stuff_b(A)).</div>
<div> </div><div> </div><div>This can almost always be re-written "mechanically" if you just think of the loop as a tail-recursive function with start/stop/result arguments. You could even declare a "for()" function that takes a fun():</div>
<div> </div><div>for(Limit, Limit, _, Result) -> Result;</div><div>for(Start, Limit, Fun, Result) -></div><div>    for(Start+1, Limit, Fun, Fun(Result)).</div><div> </div><div> </div><div>This would be used in the above as:</div>
<div> </div><div>stuff_a(),</div><div>for(a, b, fun(C) -> C + stuff_b(C) end, 0),</div><div>stuff_c()<br clear="all"></div><div> </div><div>This, in turn, is the core of the "fold" operation on sequences and containers. (Look at lists:foldl(), dict:fold(), and friends). Thus, for the parts of your program that just iterate over the items in an element, you can use lists:foldl() as the loop construct.</div>
<div> </div><div> </div><div>Sincerely,</div><div> </div><div>jw</div><div> </div><div> </div><div><br>--<br>Americans might object: there is no way we would sacrifice our living standards for the benefit of people in the rest of the world. Nevertheless, whether we get there willingly or not, we shall soon have lower consumption rates, because our present rates are unsustainable. <br>
<br>
<br><br></div><div class="gmail_quote">On Fri, Sep 2, 2011 at 3:21 AM, Bangon Kali <span dir="ltr"><<a href="mailto:bangonkali@gmail.com">bangonkali@gmail.com</a>></span> wrote:<br><blockquote style="margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid;" class="gmail_quote">
Hi guys! I'm a newbie here. I'm very new to Erlang. Although I've been<br>
studying well im having problems converting sequential programs in to<br>
Recursive ones. I'm using this book Pragmatic Programming Erlang (2007).<br>
I've been half way in my readings. Although I kinda get some of the pieces<br>
along the way, I have been having problems with some parts. Generally on how<br>
to convert very sequential programs in to recursive ones.<br>
<br>
In order to test my knowledge in Erlang I have setup a challenge to myself,<br>
by converting  <a href="http://j.mp/r8hS3C" target="_blank">http://j.mp/r8hS3C</a> this program  that I've made in several<br>
other languages (C, Python, Javscript) into Erlang. This program basically<br>
just Finds the set of Realistic Resistors and Capacitor for an Astable 555<br>
IC implementation.<br>
<br>
The program uses the brute force technique by testing all possible values<br>
and calculating the frequency. It will then compare the percentage<br>
difference between the previous frequency to the current frequency, if the<br>
new frequency is lower, then it will save the R1, R2, and C combinations. It<br>
will do in a loop until all possible realistic values of R1, R2 and C are<br>
tested.<br>
<br>
a simple pseudo code might be easier to understand<br>
<br>
<br>
<br>
where:<br>
   get_error returns the percentage difference between 2 values<br>
   get_frequency returns the frequency of an R1, R2 and C combination<br>
   f_desired is the frequency target<br>
<br>
the complete source code for this program (in some languages) are available<br>
on this bitbucket site: <a href="http://j.mp/r8hS3C" target="_blank">http://j.mp/r8hS3C</a><br>
<br>
i'm not asking for a direct translation in to erlang, but if you can easily<br>
make one, then that would really help, since i can study it directly and<br>
somehow learn to implement erlang on some other problems with the same<br>
situation such as this.<br>
<br>
here are some of my attempts, but im at loss at how to continue this.<br>
<br>
i hope you guys can help. just some clue, if i may ask. thanks!<br>
<font color="#888888"><br>
<br>
--<br>
View this message in context: <a href="http://erlang.2086793.n4.nabble.com/Newbie-Question-brute-force-method-tp3785742p3785742.html" target="_blank">http://erlang.2086793.n4.nabble.com/Newbie-Question-brute-force-method-tp3785742p3785742.html</a><br>

Sent from the Erlang Questions mailing list archive at Nabble.com.<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</font></blockquote></div><br>