Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: swap columns in a 2-dim array

by tlm (Prior)
on Jun 17, 2005 at 08:59 UTC ( [id://467623]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub fys {
        my $arr = shift;
    ...
            --$i;
        }
    }
    
  2. or download this
    @nums = map [ @{$_}[@cols] ], @nums;
    
  3. or download this
    my @cols = 0..11;
    do {
      fys( \@cols );
    } until is_deranged( \@cols );
    
  4. or download this
    sub is_deranged {
      my $arr = shift;
      $arr->[ $_ ] == $_ and return for 0..$#$arr;
      return 1;
    }
    
  5. or download this
    use strict;
    use warnings;
    ...
            @$arr[$i,$j] = @$arr[$j,$i];
        }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-23 22:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found