Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: PDL: efficient self-referencing math?

by etj (Deacon)
on May 26, 2022 at 13:31 UTC ( [id://11144193]=note: print w/replies, xml ) Need Help??


in reply to PDL: efficient self-referencing math?

The posted code actually has a sort of cascade effect; it starts at the highest-numbered (last) value, subtracts that from the second-last, then moves down one, subtracting that from the one below, etc:
pdl> p $x = floor random(5) * 10 [9 4 3 2 8] pdl> p Dumper($xperl = $x->unpdl) $VAR1 = ['9','4','3','2','8']; pdl> $xperl->[ $_ -1 ] -= $xperl->[ $_ ] for reverse 1 .. $#$xperl; pdl> p Dumper($xperl) $VAR1 = [14,-5,9,-6,8];
The way to achieve that would be to do the below, but multiplying $to_sub by sequence($x->dim(0)) before subtracting. On the assumption this was not intended and instead the idea was to rotate the vector one over, then subtract that from the original:
pdl> p $x = pdl '[9 4 3 2 8]' [9 4 3 2 8] pdl> $to_sub = $x->rotate(-1)->sever # MUST sever, or next mutates $x pdl> $to_sub(-1) .= 0 pdl> p $to_sub [4 3 2 8 0] pdl> p $x - $to_sub [5 1 1 -6 8]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-19 03:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found