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:
for(my $k=0; $k<$maxColumns; $k++) {
print "Min: " . min($dataA->slice('$k,:')) . "\n\n";
print "Max: " . max($dataB->slice('$k,:')) . "\n\n";
}
The variable "$k" can't be interpreted within the slice() method.
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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.