in reply to Re: Selecting Ranges of 2-Dimensional Data
in thread Selecting Ranges of 2-Dimensional Data
The following hack passes the tests in the root node:
use Data::Alias; sub getsubset { my $d = shift; alias my @x = @{$$d[1]}[1,2]; alias my @y = @{$$d[2]}[1,2]; return [ \@x, \@y ]; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Selecting Ranges of 2-Dimensional Data
by LanX (Saint) on Oct 26, 2018 at 15:55 UTC | |
by ikegami (Patriarch) on Oct 28, 2018 at 22:17 UTC | |
by LanX (Saint) on Oct 29, 2018 at 01:00 UTC |