Your comment
#not creating with .. operator, mem efficient is somewhat outdated, as for several major releases now (at least since
5.005_03) the
.. operator has
not created a masive temporary array as it was wont to do in earlier times. So unless you are using an old version of Perl, please feel free to use
for(1..1_000_000) without fear, and avoid clumsy alternatives!
Update: Back to your topic, this little exercise isn't a new idea, but it is a good thing to try in order to get some understanding of rand. You might try different pseudo-random number generation functions (a quick google should turn up lots) or indeed some CPAN options) and compare the results, especially if you are going to rely on rand for any meaningful purpose (e.g. we use Monte-Carlo economic simulations on occasion). You might also consider the distribution being generated - the built-in functions typically generate uniform distributions, but for many purposes that isn't immediately suitable. In the real world however, if you do need lots of pseudo-random numbers you're most likely better off with a non-default algorithm coded in C for speed, or some real randomness.
--
I'd like to be able to assign to an luser
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.