Think about what makes the code difficult for a moment. You have non-uniformly sampled data and you want to fill in the gaps. That means that you have to account for possible special cases at the start and end of the data and you have to ensure you are using the correct points in between. There is a limit to how much you can make that processing simple.

If you focus on the interpolation loop in my code you will see that:

  1. the start point is handled uniformly with the interpolated points.
  2. raw data is thrown away while the epoch for the current point to be calculated is greater than the second raw data point in the list. That gets us the appropriate pair of points to interpolate between.
  3. the last point is by definition the last point in the raw list and is handled as a special case.

Where's the problem? {grin}

True laziness is hard work

In reply to Re^3: Interpolating data slope for multiple points by GrandFather
in thread Interpolating data slope for multiple points by oko1

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.