PDL(i,j) manipulation:
Look at the get and set functions in
PDL::Func.
To note, the difference between column and row operations are the difference between 0 transpose operations and 2 of them. That said, between
PDL::Slices and
PDL::NiceSlice there are so many ways to skin this cat I'm surprised people worry about the issue of column/row operations in PDL.
#! /usr/bin/perl
use PDL;
my $M = sequence(10,10);
print $M;
my $row = $M->slice(':,3');
my $col = $M->slice('4,:');
my $col2 = $M->slice('5,:');
my $deep_col = $col->copy;
$col .= $col2;
$col2 .= $deep_col;
print $M;
See also
reorder,
dice,
range etc.
Update:original code example broken.
If you're doing lots of row or column manipulations, perhaps better to keep a 1d piddle of index values and manipulate those.
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.