|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
This message is one of several periodic postings to DevShed's Perl forum intended to make it easier for Perl programmers to find answers to common questions. The core of this message represents an excerpt from the documentation provided with every Standard Distribution of Perl.
--------------------------------------------- How do I perform an operation on a series of integers? To call a function on each element in an array, and collect the results, use: @results = map { my_func($_) } @array; For example: @triple = map { 3 * $_ } @single; To call a function on each element of an array, but ignore the results: foreach $iterator (@array) { some_func($iterator); } To call a function on each integer in a (small) range, you can use: @results = map { some_func($_) } (5 .. 25); but you should be aware that the `..' operator creates an array of all integers in the range. This can take a lot of memory for large ranges. Instead use: @results = (); for ($i=5; $i < 500_005; $i++) { push(@results, some_func($i)); } This situation has been fixed in Perl5.005. Use of `..' in a `for' loop will iterate over the range, without creating the entire range. for my $i (5 .. 500_005) { push(@results, some_func($i)); } will not create a list of 500,000 integers. --------------------------------------------- Documents such as this have been called "Answers to Frequently Asked Questions" or FAQ for short. They serve to reduce the volume of redundant traffic on this bulletin board by providing quality answers to questions that keep comming up. If you find errors or other problems with these postings please send corrections or comments to the posting email address. ------------------ Written by Anonym0us, inspired by the original PerlFAQ Server. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Perl Programming > FAQ 4.7: How do I perform an operation on a series of integers? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|