Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: phi div by 0 error

by Laurent_R (Canon)
on Sep 01, 2013 at 16:32 UTC ( [id://1051826]=note: print w/replies, xml ) Need Help??


in reply to phi div by 0 error

Just for fun, with a recursive definition of the Fibonacci function:

#!/usr/bin/perl use strict; use warnings; use Memoize; memoize 'fibo'; my $val = shift; printf "%.12f\n", fibo($val+1)/fibo($val); sub fibo { my $n = shift; return $n if ($n < 2); return fibo ($n-1) + fibo ($n-2); }

This gives the following result:

$ perl fibo3.pl 32 1.618033988750

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1051826]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-19 11:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found