Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Small examples of string eval

by jwkrahn (Abbot)
on May 13, 2006 at 23:40 UTC ( [id://549282]=note: print w/replies, xml ) Need Help??


in reply to Small examples of string eval

Replies are listed 'Best First'.
Re^2: Small examples of string eval
by ikegami (Patriarch) on May 14, 2006 at 04:24 UTC

    Check out NestedLoops in Algorithm::Loops. In this case,

    use Algorithm::Loops qw( NestedLoops ); use List::Util qw( reduce sum ); sub mul { return reduce { $a * $b } @_; } NestedLoops( [ map { [ 0..$n_ra->[$_] ] } 0..$#$n_ra ], sub { $prob_ra[sum @_] += mul map { $f_raa->[$_]->[$_[$_]] } 0..$#_; } );

    I suspect that
    $n_ra->[X]
    is equal to
    $#{$f_raa->[X]}
    in which case
    map { [ 0..$n_ra->[$_] ] } 0..$#$n_ra
    can be replaced with
    map { [ 0..$#$_ ] } @$f_raa

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-23 19:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found