Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am using the PDL module to perform statistical analysis on some basic datasets that I have.
I am having trouble figuring out how to do a simple operation (I think). I want to extract the minimum value of each COLUMN of data in a 2-dimensional PDL structure.
Here is a code fragment that I tried but didn't work:
The variable "$k" can't be interpreted within the slice() method.for(my $k=0; $k<$maxColumns; $k++) { print "Min: " . min($dataA->slice('$k,:')) . "\n\n"; print "Max: " . max($dataB->slice('$k,:')) . "\n\n"; }
Is there a way to perform a set operation to just get the results I want without a FOR loop?
Any help is appreciated. Thanks.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Manipulating columns of PDL data using slice() method
by levien (Initiate) on Jul 03, 2007 at 00:26 UTC | |
by Anonymous Monk on Jul 03, 2007 at 20:00 UTC | |
by etj (Priest) on Jun 19, 2022 at 20:12 UTC | |
Re: Manipulating columns of PDL data using slice() method
by lin0 (Curate) on Jul 02, 2007 at 22:38 UTC |