#!/usr/bin/env perl use strict; use warnings; use PDL; use PDL::IO::Misc; my $x = pdl( rcols 'table.csv', { COLSEP => ',' } ); print $x; exit;