##
#!/usr/bin/env perl
use strict;
use warnings;
use PDL;
use PDL::IO::Misc;
my $x = pdl( rcols 'table.csv', { COLSEP => ',' } );
print $x;
exit;
####
[
[0.1 1 1.1 10 100]
[0.2 2 2.2 20 200]
[0.3 3 3.3 30 300]
[0.4 4 4.4 40 400]
[0.5 5 5.5 50 500]
]