Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: How to shift the columns of a PDL matrix

by lin0 (Curate)
on Jul 03, 2007 at 22:35 UTC ( [id://624802]=note: print w/replies, xml ) Need Help??


in reply to How to shift the columns of a PDL matrix

Hi Anonymous Monk,

you could use something like:

$pdl = append(zeroes(1,$pdl->getdim(1)), $pdl(0:-2,:));

where $pdl is your 8 columns by 120 rows piddle

Note: I am assuming you are using PDL::NiceSlice

Cheers,

lin0

Replies are listed 'Best First'.
Re^2: How to shift the columns of a PDL matrix
by Anonymous Monk on Nov 04, 2016 at 09:42 UTC

    since you don't want to grow your matrix, it is even simpler to use rotate to shift your columns and then insert your new data.

    $pdl=$pdl->rotate(1); $pdl(0,).=$new_data # your vector.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://624802]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-04-24 10:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found