Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Other approaches using a for-loop are perfectly OK and you should be sure you understand them. But as you gain more experience with Perl, you'll see that there's a good deal of wasted motion there. Here's a solution I find neat and easy to understand — once you understand the powerful map built-in!

c:\@Work\Perl\monks>perl -le "use warnings; use strict; ;; use List::Util qw( min max ); ;; my @not_normalized = qw(5 4 9 9 6); ;; my @normalized = normalizer(@not_normalized); ;; printf qq{$_ } for @normalized; ;; sub normalizer { my $min_numarray = min @_; my $max_numarray = max @_; my $numden = $max_numarray - $min_numarray; ;; return map { ($_ - $min_numarray) / $numden } @_; } " 0.2 0 1 1 0.4
The next thing to understand is that if you are processing a large array (and what is "large" depends on your circumstances), it may be advantageous to pass (and perhaps return) the array by reference; see perlref and perlreftut.

Update: And if you can stand to operate on the elements of the array in place (definitely fastest for large arrays), here's yet another approach:

c:\@Work\Perl\monks>perl -le "use warnings; use strict; ;; use List::MoreUtils qw(minmax); ;; my @array = qw(5 4 9 9 6); ;; normalizer(@array); ;; printf qq{$_ } for @array; ;; sub normalizer { return unless @_ >= 2; my ($min, $max) = minmax @_; my $numden = $max - $min; ;; $_ = ($_ - $min) / $numden for @_; } " 0.2 0 1 1 0.4
This depends on the aliasing of the  @_ function argument array. See perlglossary for a brief discussion of the concept of an alias. Also see aliasing in Wikipedia.


Give a man a fish:  <%-{-{-{-<


In reply to Re: returning array in custom subroutine by AnomalousMonk
in thread returning array in custom subroutine by dovah

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-24 06:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found