Here is the code...
use strict;
use warnings;
my @array= (1,2,3,4,5);
my $scalar= 5;
@array= $scalar*@array;
print @array;
Need something that can perform similar function with little code. Thanks!
|
|
Use foreach.
|
|||||||||||||||||
|
|
You can try this:
or more simply:
|
|||||||||||||
|
|
Howabout this:
As you see, you can modify the array in-place as it's traversed. |
|||||
|
|
This comment is for SoloBold. Here is a test of the
Here is a test of the
Here is the system I'm running on:
Here were results from one test:
These times are fairly reproducible on the same machine, and the results are somewhat repeatable on a dual-core Linux box:
The ratio of performance on the OS X box is 8.53x slower for My Linux box is dual-core and has a slightly faster cores than my single-core OS X laptop. EDIT I updated Perl from v5.8.8 to v5.12.3 on my OS X box and got a considerable speed boost, but
This goes from 8.53x worse to 2.94x worse. A fairly substantial improvement. The Linux box performed slightly worse with upgrading its Perl installation to v5.12.2:
This goes from 3.67x worse to 4.5x worse — not so good! It might not always pay to upgrade, just for the heck of it. |
||||
|
|
|
I don't know the scope of your need. IFF you are doing numerical data manipulation, the Perl Data Language (PDL) takes an array of numerical data, creates a "piddle" object from it and overloads mathematical operations to "vectorize" their operation. This is a very efficient system for doing numerical processing. Anyway here is an example:
|
||||
|
|