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]

In reply to Re: PDL: efficient self-referencing math? by etj
in thread PDL: efficient self-referencing math? by BrowserUk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.